diff options
author | Antoine Musso <hashar@free.fr> | 2014-11-16 21:06:57 +0100 |
---|---|---|
committer | Antoine Musso <hashar@free.fr> | 2014-11-16 21:06:57 +0100 |
commit | bed3b0989730cdc3f513884325f1447eb378aaee (patch) | |
tree | dced9fc6823d9a7b99e8b8b47e31d25e49ed7d26 /git/test/test_commit.py | |
parent | 614907b7445e2ed8584c1c37df7e466e3b56170f (diff) | |
download | gitpython-bed3b0989730cdc3f513884325f1447eb378aaee.tar.gz |
pep8 linting (double spaces before comment)
E261 at least two spaces before inline comment
Diffstat (limited to 'git/test/test_commit.py')
-rw-r--r-- | git/test/test_commit.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/test/test_commit.py b/git/test/test_commit.py index 7bb019f4..e211f75b 100644 --- a/git/test/test_commit.py +++ b/git/test/test_commit.py @@ -73,7 +73,7 @@ class TestCommit(TestBase): commit = self.rorepo.commit('2454ae89983a4496a445ce347d7a41c0bb0ea7ae') # commits have no dict self.failUnlessRaises(AttributeError, setattr, commit, 'someattr', 1) - commit.author # bake + commit.author # bake assert_equal("Sebastian Thiel", commit.author.name) assert_equal("byronimo@gmail.com", commit.author.email) @@ -251,7 +251,7 @@ class TestCommit(TestBase): # Verify its serialization and deserialization cmt = self.rorepo.commit('0.1.6') assert isinstance(cmt.message, unicode) # it automatically decodes it as such - assert isinstance(cmt.author.name, unicode) # same here + assert isinstance(cmt.author.name, unicode) # same here cmt.message = "üäêèß".decode("utf-8") assert len(cmt.message) == 5 |