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_submodule.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_submodule.py')
-rw-r--r-- | git/test/test_submodule.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/git/test/test_submodule.py b/git/test/test_submodule.py index b657b25e..3f7ac39d 100644 --- a/git/test/test_submodule.py +++ b/git/test/test_submodule.py @@ -338,7 +338,7 @@ class TestSubmodule(TestBase): assert nsm.move(sm.path) is nsm # rename a module - nmp = join_path_native("new", "module", "dir") + "/" # new module path + nmp = join_path_native("new", "module", "dir") + "/" # new module path pmp = nsm.path abspmp = nsm.abspath assert nsm.move(nmp) is nsm @@ -447,7 +447,7 @@ class TestSubmodule(TestBase): sm.move(fp, module=False) # leave it at the old location assert not sm.module_exists() - cpathchange = rwrepo.index.commit("changed sm path") # finally we can commit + cpathchange = rwrepo.index.commit("changed sm path") # finally we can commit # update puts the module into place rm.update(recursive=False, progress=prog) @@ -549,7 +549,7 @@ class TestSubmodule(TestBase): # ================= # finally we recursively update a module, just to run the code at least once # remove the module so that it has more work - assert len(nsm.children()) >= 1 # could include smmap + assert len(nsm.children()) >= 1 # could include smmap assert nsm.exists() and nsm.module_exists() and len(nsm.children()) >= 1 # assure we pull locally only nsmc = nsm.children()[0] |