summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafal Stozek <say4ne@gmail.com>2013-01-31 19:40:38 +0100
committerRafal Stozek <say4ne@gmail.com>2013-01-31 19:40:38 +0100
commitd877778bf39184d5b203eaf0add7c4265f820e02 (patch)
tree75c4e687ba1d0ca374bb2e63cee9467a09b274c9
parent9a4a1ce323237d0aadafbddcd270c47be251bac2 (diff)
Fixed #19711 -- Typo in __all__ declaration in django/test/simple.py
-rw-r--r--django/test/simple.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/simple.py b/django/test/simple.py
index 8faf1e4f93..684e3193a2 100644
--- a/django/test/simple.py
+++ b/django/test/simple.py
@@ -11,7 +11,7 @@ from django.utils import unittest
from django.utils.importlib import import_module
from django.utils.module_loading import module_has_submodule
-__all__ = ('DjangoTestSuiteRunner')
+__all__ = ('DjangoTestSuiteRunner',)
# The module name for tests outside models.py
TEST_MODULE = 'tests'