diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-18 12:54:16 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-18 12:54:16 +0200 |
commit | aed099a73025422f0550f5dd5c3e4651049494b2 (patch) | |
tree | 89499373213a626e597d1c0c8596b6b37a17e82a /lib/git/objects/commit.py | |
parent | 17852bde65c12c80170d4c67b3136d8e958a92a9 (diff) | |
download | gitpython-aed099a73025422f0550f5dd5c3e4651049494b2.tar.gz |
resolved cyclic inclusion issue by moving the Diffable interface into the diff module, which probably is the right thing to do anyway
Diffstat (limited to 'lib/git/objects/commit.py')
-rw-r--r-- | lib/git/objects/commit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/objects/commit.py b/lib/git/objects/commit.py index 521130c5..181cbb52 100644 --- a/lib/git/objects/commit.py +++ b/lib/git/objects/commit.py @@ -11,7 +11,7 @@ from tree import Tree import base import utils -class Commit(base.Object, Iterable, base.Diffable): +class Commit(base.Object, Iterable, diff.Diffable): """ Wraps a git Commit object. |