diff options
author | Vincent Driessen <me@nvie.com> | 2016-04-14 13:23:35 +0200 |
---|---|---|
committer | Vincent Driessen <me@nvie.com> | 2016-04-14 13:23:35 +0200 |
commit | c042f56fc801235b202ae43489787a6d479cd277 (patch) | |
tree | fc0617c4c54f597f724005dd6c96f63ed967f2af /git/diff.py | |
parent | 07b124c118942bc1eec3a21601ee38de40a2ba0e (diff) | |
download | gitpython-c042f56fc801235b202ae43489787a6d479cd277.tar.gz |
Export NULL_TREE
Diffstat (limited to 'git/diff.py')
-rw-r--r-- | git/diff.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/diff.py b/git/diff.py index 67d1986c..7a75ffed 100644 --- a/git/diff.py +++ b/git/diff.py @@ -16,7 +16,7 @@ from git.compat import ( ) -__all__ = ('Diffable', 'DiffIndex', 'Diff') +__all__ = ('Diffable', 'DiffIndex', 'Diff', 'NULL_TREE') # Special object to compare against the empty tree in diffs NULL_TREE = object() |