Fixed #19711 -- Typo in __all__ declaration in django/test/simple.py

This commit is contained in:
Rafal Stozek 2013-01-31 19:40:38 +01:00
parent 9a4a1ce323
commit d877778bf3
1 changed files with 1 additions and 1 deletions

View File

@ -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'