From f9a33cbfde4a174a1c405f8b93d4848ed7f9b6bc Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 2 Feb 2010 13:01:27 +0000 Subject: [PATCH] Removed a stray debug statement. Thanks to Ramiro Morales for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12375 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/test/simple.py | 1 - 1 file changed, 1 deletion(-) diff --git a/django/test/simple.py b/django/test/simple.py index cf4d4c165d..a64ed96421 100644 --- a/django/test/simple.py +++ b/django/test/simple.py @@ -147,7 +147,6 @@ def build_test(label): try: if issubclass(TestClass, unittest.TestCase): - print 'is a test case' if len(parts) == 2: # label is app.TestClass try: return unittest.TestLoader().loadTestsFromTestCase(TestClass)