Skip to content

Commit

Permalink
Fix flake8 warninng E225 missing whitespace around operator
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanteoh committed Mar 8, 2017
1 parent 536c5b4 commit a6e4785
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion v7/publication_list/publication_list.py
Expand Up @@ -193,7 +193,8 @@ def run(self):
}}
}})(this, '{}');">abstract&#x25BC;</a>] '''.format('abstract-' + label)

bibtex_display='<div id="{}" style="display:none"><pre>{}</pre></div>'.format(
display_none = '<div id="{}" style="display:none"><pre>{}</pre></div>'
bibtex_display = display_none.format(
'bibtex-' + label, bib_string)

abstract_text = str(
Expand Down

0 comments on commit a6e4785

Please sign in to comment.