diff options
author | Jesús <heckyel@hyperbola.info> | 2018-10-15 10:45:14 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2018-10-15 10:45:14 -0500 |
commit | 809432b843a74b88c9c656dc698ef5f76ad9cae6 (patch) | |
tree | 9e9e23e1148915f1b764ca9170cbeec5b5066a00 | |
parent | 6361b4e9ea31cde7aab4fef45e132c5922e58f21 (diff) | |
download | personal-site-809432b843a74b88c9c656dc698ef5f76ad9cae6.tar.lz personal-site-809432b843a74b88c9c656dc698ef5f76ad9cae6.tar.xz personal-site-809432b843a74b88c9c656dc698ef5f76ad9cae6.zip |
pep8
-rw-r--r-- | personalsite/urls.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/personalsite/urls.py b/personalsite/urls.py index 65448ca..de40b64 100644 --- a/personalsite/urls.py +++ b/personalsite/urls.py @@ -25,7 +25,8 @@ urlpatterns = [ if settings.DEBUG: from django.conf.urls.static import static - urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) + urlpatterns += static(settings.MEDIA_URL, + document_root=settings.MEDIA_ROOT) # Custom titles for admin admin.site.site_header = 'Personal Site' |