diff options
author | David Aguilar <davvid@gmail.com> | 2008-06-01 12:52:53 -0700 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-06-01 22:02:31 -0400 |
commit | bf2083922b7bccc31917bf9cdb74e3d4892c2600 (patch) | |
tree | bba087d69b6d317e1156652ed4a3804911920069 /test/testlib/helper.py | |
parent | 277be842bf30848e7292a931169bd4c8ff726dee (diff) | |
download | gitpython-bf2083922b7bccc31917bf9cdb74e3d4892c2600.tar.gz |
style: remove spaces around parens per PEP8
Signed-off-by: David Aguilar <davvid@gmail.com>
Diffstat (limited to 'test/testlib/helper.py')
-rw-r--r-- | test/testlib/helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testlib/helper.py b/test/testlib/helper.py index 0e3f6bf5..ccc7f0ac 100644 --- a/test/testlib/helper.py +++ b/test/testlib/helper.py @@ -3,7 +3,7 @@ import os GIT_REPO = os.path.dirname(os.path.dirname(os.path.dirname(__file__))) def fixture_path(name): - test_dir = os.path.dirname( os.path.dirname(__file__) ) + test_dir = os.path.dirname(os.path.dirname(__file__)) return os.path.join(test_dir, "fixtures", name) def fixture(name): |