summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2017-05-01 16:51:33 -0500
committerluxagraf <sng@luxagraf.net>2017-05-01 16:51:33 -0500
commit94844eacde23b1a3fb21084ce5f2b320fb7617b2 (patch)
treed12e220e4390fb3be5e01acffda93c93bf629458 /config
parentc53aeceae4a9867f5f13ee99434138b5b8543a8c (diff)
fixed a bug in the build process for maps
Diffstat (limited to 'config')
-rw-r--r--config/base_urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/base_urls.py b/config/base_urls.py
index aa97cbd..693ec26 100644
--- a/config/base_urls.py
+++ b/config/base_urls.py
@@ -67,7 +67,7 @@ urlpatterns += [
url(r'^src/', include('src.urls', namespace='src')),
url(r'^figments/', include('figments.urls', namespace='figments')),
url(r'^resume/', include('resume.urls', namespace='resume')),
- url(r'^map', include('locations.urls')),
+ url(r'^map/', include('locations.urls', namespace='map')),
url(
r'^$',
HomepageList.as_view(),