diff options
| author | Gary Wilson Jr <gary.wilson@gmail.com> | 2009-03-31 07:25:09 +0000 |
|---|---|---|
| committer | Gary Wilson Jr <gary.wilson@gmail.com> | 2009-03-31 07:25:09 +0000 |
| commit | 955ec63c5e12931075ef728267874a2fa2f83688 (patch) | |
| tree | 97dc3556d9bf3480498218631f8c8bc3725776a7 | |
| parent | 68aa33f901561d7ace48c525ef770e03f5adb53d (diff) | |
[1.0.X]: Fixed #10667 -- Added missing sys import.
Backport of r10244 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10245 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | tests/regressiontests/templates/tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/regressiontests/templates/tests.py b/tests/regressiontests/templates/tests.py index 734a598b1c..f1b5a9ed28 100644 --- a/tests/regressiontests/templates/tests.py +++ b/tests/regressiontests/templates/tests.py @@ -6,10 +6,11 @@ if __name__ == '__main__': # before importing 'template'. settings.configure() +from datetime import datetime, timedelta import os +import sys import traceback import unittest -from datetime import datetime, timedelta from django import template from django.core import urlresolvers |
