diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-08 14:34:29 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-09 16:19:32 +0200 |
commit | 8430529e1a9fb28d8586d24ee507a8195c370fa5 (patch) | |
tree | 8acfe3a881478d79b210f712f02828fd96ed9a55 /lib/git/commit.py | |
parent | 9c0c2fc4ee2d8a5d0a2de50ba882657989dedc51 (diff) | |
download | gitpython-8430529e1a9fb28d8586d24ee507a8195c370fa5.tar.gz |
Renamed lazy.py to base.py to have a file for base classes - lazy not yet changed to allow proper rename tracking
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 961e483b..14e1ba68 100644 --- a/lib/git/commit.py +++ b/lib/git/commit.py @@ -8,7 +8,7 @@ import re import time from actor import Actor -from lazy import LazyMixin +from base import LazyMixin from tree import Tree import diff import stats |