Skip to content

Commit 577ec5e

Browse files
committed
Fix runtests.py syntax error
1 parent a870426 commit 577ec5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/runtests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def runtests(foo, settings='settings', extra=[], test_builtin=False):
1515
apps)
1616
# pre-1.6 test runners don't understand full module names
1717
import django
18-
if django.VERSION < (1, 6)
18+
if django.VERSION < (1, 6):
1919
apps = [app.replace('django.contrib.', '') for app in apps]
2020
execute(['./manage.py', 'test', '--settings', settings] + extra + apps)
2121

0 commit comments

Comments
 (0)