From d5e695cd89a01420f210382fbfdb4f7978d37e36 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Thu, 16 Aug 2007 11:06:49 +0000 Subject: [PATCH] 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 --- django/core/management/commands/test.py | 1 + 1 file changed, 1 insertion(+) 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.'