Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
ralsina committed May 1, 2015
1 parent a52163f commit e66df3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/plugins/compile/rest/__init__.py
Expand Up @@ -104,7 +104,7 @@ def compile_html(self, source, dest, is_two_file=True):
out_file.write(output)
deps_path = dest + '.dep'
if deps.list:
deps.list = [p for p in deps.list if p != dest] #Don't depend on yourself (#1671)
deps.list = [p for p in deps.list if p != dest] # Don't depend on yourself (#1671)
with io.open(deps_path, "w+", encoding="utf8") as deps_file:
deps_file.write('\n'.join(deps.list))
else:
Expand Down

0 comments on commit e66df3a

Please sign in to comment.