diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-07-06 20:21:52 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-07-06 20:21:52 +0200 |
commit | 9059525a75b91e6eb6a425f1edcc608739727168 (patch) | |
tree | 3c3985fc1bc5efe0d9a19ceafdfc8d482297192b /lib/git/repo/__init__.py | |
parent | 73959f3a2d4f224fbda03c8a8850f66f53d8cb3b (diff) | |
download | gitpython-9059525a75b91e6eb6a425f1edcc608739727168.tar.gz |
Made repo.py a package to allow better localization of functions and utilities - the repo module got rather large
Diffstat (limited to 'lib/git/repo/__init__.py')
-rw-r--r-- | lib/git/repo/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/git/repo/__init__.py b/lib/git/repo/__init__.py new file mode 100644 index 00000000..8902a254 --- /dev/null +++ b/lib/git/repo/__init__.py @@ -0,0 +1,3 @@ +"""Initialize the Repo package""" + +from base import *
\ No newline at end of file |