diff options
author | luxagraf <sng@luxagraf.net> | 2016-02-03 20:26:53 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-02-03 20:26:53 -0500 |
commit | 83345be3f40f14cc2a09bac9b4d03e333c9b8d2f (patch) | |
tree | 8849a4be18e853d8e5afc36a280b05c21907474c /app/builder | |
parent | c7de7cb605734655e29c6504cb6b952024b230a4 (diff) |
fixed yet another bug in build
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) """ |