Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed unicode error, bumped to 0.1.1
  • Loading branch information
ralsina committed Apr 29, 2015
1 parent 672dea6 commit 2bbc7ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion v7/webapp/webapp.plugin
Expand Up @@ -4,6 +4,6 @@ Module = webapp

[Documentation]
Author = Roberto Alsina
Version = 0.1
Version = 0.1.1
Website = http://plugins.getnikola.com/#webapp
Description = Turn Nikola into a webapp
2 changes: 1 addition & 1 deletion v7/webapp/webapp.py
Expand Up @@ -110,7 +110,7 @@ def save(path):
break
if post is None:
b.abort(404, "No such post")
content = b.request.forms.pop('content')
content = b.request.forms.pop('content').decode("utf8")
post.compiler.create_post(post.source_path, content=content, onefile=True, is_page=False, **b.request.forms)
init_site()
b.redirect('/edit/' + path)
Expand Down

0 comments on commit 2bbc7ea

Please sign in to comment.