Skip to content

Commit

Permalink
pep8: Add compliance with rule E261 to test_urls.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
adnrs96 committed May 17, 2017
1 parent 85aa07e commit 57bc847
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zerver/tests/test_urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def test_public_urls(self):
if doc.startswith(".") or '~' in doc or '#' in doc:
continue # nocoverage -- just here for convenience
if doc not in {'main.html', 'index.md', 'include'}:
get_urls[200].append('/help/' + os.path.splitext(doc)[0]) # Strip the extension.
get_urls[200].append('/help/' + os.path.splitext(doc)[0]) # Strip the extension.

post_urls = {200: ["/accounts/login/"],
302: ["/accounts/logout/"],
Expand Down

0 comments on commit 57bc847

Please sign in to comment.