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 | |
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
-rw-r--r-- | lib/git/base.py (renamed from lib/git/lazy.py) | 0 | ||||
-rw-r--r-- | lib/git/commit.py | 2 | ||||
-rw-r--r-- | lib/git/tree.py | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/lib/git/lazy.py b/lib/git/base.py index 5e470181..5e470181 100644 --- a/lib/git/lazy.py +++ b/lib/git/base.py 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 diff --git a/lib/git/tree.py b/lib/git/tree.py index 1b546f85..06c1a158 100644 --- a/lib/git/tree.py +++ b/lib/git/tree.py @@ -5,7 +5,7 @@ # the BSD License: http://www.opensource.org/licenses/bsd-license.php import os -from lazy import LazyMixin +from base import LazyMixin import blob class Tree(LazyMixin): |