Skip to content

Commit 8430529

Browse files
committed
Renamed lazy.py to base.py to have a file for base classes - lazy not yet changed to allow proper rename tracking
1 parent 9c0c2fc commit 8430529

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
File renamed without changes.

lib/git/commit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import time
99

1010
from actor import Actor
11-
from lazy import LazyMixin
11+
from base import LazyMixin
1212
from tree import Tree
1313
import diff
1414
import stats

lib/git/tree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
66

77
import os
8-
from lazy import LazyMixin
8+
from base import LazyMixin
99
import blob
1010

1111
class Tree(LazyMixin):

0 commit comments

Comments
 (0)