diff options
author | Michael Trier <mtrier@gmail.com> | 2008-12-15 20:53:38 -0500 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-12-15 20:53:38 -0500 |
commit | 6ffd4b0193acf86b6a6e179f8673ed38bad3191d (patch) | |
tree | 8116f5c284ca1227b7e489271e2d9c1bc2633f7e /lib/git/commit.py | |
parent | 4b43ca7ff72d5f535134241e7c797ddc9c7a3573 (diff) | |
parent | 39f85c4358b7346fee22169da9cad93901ea9eb9 (diff) | |
download | gitpython-6ffd4b0193acf86b6a6e179f8673ed38bad3191d.tar.gz |
Corrected conflict with pep8 changes from apollo13.
Diffstat (limited to 'lib/git/commit.py')
-rw-r--r-- | lib/git/commit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/commit.py b/lib/git/commit.py index e35090a1..091cf78c 100644 --- a/lib/git/commit.py +++ b/lib/git/commit.py @@ -171,7 +171,7 @@ class Commit(LazyMixin): return commits @classmethod - def diff(cls, repo, a, b = None, paths = None): + def diff(cls, repo, a, b=None, paths=None): """ Show diffs between two trees: |