summaryrefslogtreecommitdiff
path: root/app/builder
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2016-02-03 20:26:53 -0500
committerluxagraf <sng@luxagraf.net>2016-02-03 20:26:53 -0500
commit83345be3f40f14cc2a09bac9b4d03e333c9b8d2f (patch)
tree8849a4be18e853d8e5afc36a280b05c21907474c /app/builder
parentc7de7cb605734655e29c6504cb6b952024b230a4 (diff)
fixed yet another bug in build
Diffstat (limited to 'app/builder')
-rw-r--r--app/builder/base.py2
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)
"""