diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2014-11-19 12:16:44 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2014-11-19 12:16:44 +0100 |
commit | 257264743154b975bc156f425217593be14727a9 (patch) | |
tree | 755ccbe76bc225ef237264e1b45bcb17202087ec /git/test/test_reflog.py | |
parent | 4d9b7b09a7c66e19a608d76282eacc769e349150 (diff) | |
download | gitpython-257264743154b975bc156f425217593be14727a9.tar.gz |
Applied autopep8
Commandline was
autopep8 -j 8 --max-line-length 120 --in-place --recursive --exclude "*gitdb*,*async*" git/
Diffstat (limited to 'git/test/test_reflog.py')
-rw-r--r-- | git/test/test_reflog.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/test/test_reflog.py b/git/test/test_reflog.py index fec50095..c281aa44 100644 --- a/git/test/test_reflog.py +++ b/git/test/test_reflog.py @@ -53,7 +53,7 @@ class TestRefLog(TestBase): pp = 'reflog_invalid_' for suffix in ('oldsha', 'newsha', 'email', 'date', 'sep'): self.failUnlessRaises(ValueError, RefLog.from_file, fixture_path(pp + suffix)) - #END for each invalid file + # END for each invalid file # cannot write an uninitialized reflog self.failUnlessRaises(ValueError, RefLog().write) @@ -93,7 +93,7 @@ class TestRefLog(TestBase): # ... and negative for idx in (-1, -24): RefLog.entry_at(rlp, idx) - #END for each index to read + # END for each index to read # END for each reflog # finally remove our temporary data |