Put two spaces before inline comments when there is only one space.

PEP8 (E261) suggests to use at least two spaces before inline comments.
This commit is contained in:
Petr Zemek 2014-10-27 11:24:15 +01:00
parent 4840fc0edc
commit ec3d5800f2
3 changed files with 4 additions and 4 deletions

View file

@ -573,7 +573,7 @@ def safe_join(directory, filename):
def wiki_page(filename):
filename = safe_join(app.config['WIKI_FOLDER'], filename)
with open(filename, 'rb') as fd:
content = fd.read() # Read and process the file content...
content = fd.read() # Read and process the file content...
:param directory: the base directory.
:param filename: the untrusted filename relative to that directory.