diff options
Diffstat (limited to 'app/builder')
-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 9dc0533..f44738d 100644 --- a/app/builder/base.py +++ b/app/builder/base.py @@ -341,7 +341,7 @@ class BuildProjects(Build): 'IMAGES_URL': settings.BAKED_IMAGES_URL }) t = render_to_string('details/%s.html' % (proj['slug'].split("/")[1]), c).encode('utf-8') - path = 'projects/%s/' % (proj['slug']) + path = 'projects/%s/' % (proj['slug'].split("/")[1]) self.write_file(path, t) """ |