Skip to content

Commit

Permalink
pep8 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bast committed Sep 11, 2017
1 parent 2a56530 commit a027648
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cicero/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def render_github_markdown(path, engine, engine_version):
own_css = response.read().decode("utf-8")
except IOError:
own_css = ''
own_css = flask.Markup(own_css) # disable autoescaping
own_css = flask.Markup(own_css) # disable autoescaping
# .. do the same for own javascript
# try:
# url = prefix + '/' + file_without_suffix + '.js'
Expand Down
2 changes: 1 addition & 1 deletion cicero/preview.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def home():
if os.path.isfile(own_css_file):
with io.open(own_css_file, 'r') as css_file:
own_css = css_file.read()
own_css = Markup(own_css) # disable autoescaping
own_css = Markup(own_css) # disable autoescaping
# use own javascript, if available
own_js_file = talk_no_suffix + '.js'
own_javascript = ''
Expand Down

0 comments on commit a027648

Please sign in to comment.