summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2007-08-16 11:06:49 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2007-08-16 11:06:49 +0000
commitd5e695cd89a01420f210382fbfdb4f7978d37e36 (patch)
treebab16cfc0a2adf99a683db10f13e4aa357d3a651 /django
parentf4d4936abf61200d4f1a7164fce3466a52547c6d (diff)
Fixed #5178 -- Added missing 'import sys' in management/commands/test.py. Thanks for picking this up, michal@plovarna.cz.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5900 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
-rw-r--r--django/core/management/commands/test.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/django/core/management/commands/test.py b/django/core/management/commands/test.py
index 1b0e011814..865ed01e5f 100644
--- a/django/core/management/commands/test.py
+++ b/django/core/management/commands/test.py
@@ -1,4 +1,5 @@
from django.core.management.base import BaseCommand
+import sys
class Command(BaseCommand):
help = 'Runs the test suite for the specified applications, or the entire site if no apps are specified.'