1
0
Fork 0
forked from github/pelican

fix linting errors

This commit is contained in:
Deniz Turgut 2020-05-12 23:30:03 +03:00
commit 873df9094a
No known key found for this signature in database
GPG key ID: 87B7168D7AB3ED2F
3 changed files with 11 additions and 11 deletions

View file

@ -73,8 +73,8 @@ class TestPelican(LoggedTestCase):
return True
return False
if err:
err = '\n'.join([l for l in err.decode('utf8').splitlines()
if not ignorable_git_crlf_errors(l)])
err = '\n'.join([line for line in err.decode('utf8').splitlines()
if not ignorable_git_crlf_errors(line)])
assert not out, out
assert not err, err