diff options
author | luxagraf <sng@luxagraf.net> | 2014-07-02 13:45:52 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2014-07-02 13:45:52 -0400 |
commit | 56844cc1a453ce200266b6522b63f469e8039e33 (patch) | |
tree | 574f6a8c0bf00962e464cc795d97ea59da9dfb5b /app | |
parent | a71902d62b6313dde8357c47ea2af4c3caba69bd (diff) |
fixed a couple urls
Diffstat (limited to 'app')
-rw-r--r-- | app/builder/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/builder/base.py b/app/builder/base.py index c77d358..7f6f434 100644 --- a/app/builder/base.py +++ b/app/builder/base.py @@ -277,7 +277,7 @@ class BuildMap(Build): 'IMAGES_URL': settings.BAKED_IMAGES_URL }) t = render_to_string('archives/map.html', c).encode('utf-8') - self.write_file('map/', t) + self.write_file('map', t) class BuildPages(Build): |