diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-12 11:50:14 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-12 11:50:14 +0200 |
commit | f2834177c0fdf6b1af659e460fd3348f468b8ab0 (patch) | |
tree | 2cb12187e664a026974383ed303cf307df2d4029 /lib/git/diff.py | |
parent | 3c0a65226f038c58fc6d6ed525f38fc00b3579b7 (diff) | |
download | gitpython-f2834177c0fdf6b1af659e460fd3348f468b8ab0.tar.gz |
Reorganized package structure and cleaned up imports
Diffstat (limited to 'lib/git/diff.py')
-rw-r--r-- | lib/git/diff.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/diff.py b/lib/git/diff.py index 943fb08a..4bc88bf4 100644 --- a/lib/git/diff.py +++ b/lib/git/diff.py @@ -5,7 +5,7 @@ # the BSD License: http://www.opensource.org/licenses/bsd-license.php import re -import blob +import objects.blob as blob class Diff(object): """ |