Răsfoiți Sursa

Missing commas

Patrick Falls 12 ani în urmă
părinte
comite
54f0d2cfd8
2 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 1 1
      django-stripped/hello/hello/settings.py
  2. 1 1
      django/hello/hello/settings.py

+ 1 - 1
django-stripped/hello/hello/settings.py

@@ -88,7 +88,7 @@ TEMPLATE_LOADERS = (
     ('django.template.loaders.cached.Loader', (
     ('django.template.loaders.cached.Loader', (
         'django.template.loaders.filesystem.Loader',
         'django.template.loaders.filesystem.Loader',
         'django.template.loaders.app_directories.Loader',
         'django.template.loaders.app_directories.Loader',
-    ))
+    )),
 )
 )
 
 
 MIDDLEWARE_CLASSES = (
 MIDDLEWARE_CLASSES = (

+ 1 - 1
django/hello/hello/settings.py

@@ -89,7 +89,7 @@ TEMPLATE_LOADERS = (
     ('django.template.loaders.cached.Loader', (
     ('django.template.loaders.cached.Loader', (
         'django.template.loaders.filesystem.Loader',
         'django.template.loaders.filesystem.Loader',
         'django.template.loaders.app_directories.Loader',
         'django.template.loaders.app_directories.Loader',
-    ))
+    )),
 )
 )
 
 
 MIDDLEWARE_CLASSES = (
 MIDDLEWARE_CLASSES = (