pep8 and other code-style changes
[wolnelektury.git] / src / dictionary / urls.py
index 2320f47..6df9a47 100755 (executable)
@@ -5,7 +5,7 @@
 from django.conf.urls import patterns, url
 from dictionary.views import NotesView
 
-urlpatterns = patterns('dictionary.views',
+urlpatterns = patterns(
+    'dictionary.views',
     url(r'^$', NotesView.as_view(), name='dictionary_notes'),
 )
-