diff options
| author | Gary Wilson Jr <gary.wilson@gmail.com> | 2009-03-31 07:23:50 +0000 |
|---|---|---|
| committer | Gary Wilson Jr <gary.wilson@gmail.com> | 2009-03-31 07:23:50 +0000 |
| commit | 7805afffd704f7d21e21a4186ad98a1a30f7cc71 (patch) | |
| tree | ab09000b022d99a4feb6894d98ae5d2e42f02d5f /tests/regressiontests/templates/tests.py | |
| parent | 7372ea159aa192757cc5383e6857c29ca2fc53c6 (diff) | |
Fixed #10667 -- Added missing sys import.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10244 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/templates/tests.py')
| -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 33114c7476..042aba2f65 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 |
