diff options
| author | Rafal Stozek <say4ne@gmail.com> | 2013-01-31 19:40:38 +0100 |
|---|---|---|
| committer | Rafal Stozek <say4ne@gmail.com> | 2013-01-31 19:40:38 +0100 |
| commit | d877778bf39184d5b203eaf0add7c4265f820e02 (patch) | |
| tree | 75c4e687ba1d0ca374bb2e63cee9467a09b274c9 | |
| parent | 9a4a1ce323237d0aadafbddcd270c47be251bac2 (diff) | |
Fixed #19711 -- Typo in __all__ declaration in django/test/simple.py
| -rw-r--r-- | django/test/simple.py | 2 |
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' |
