diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2011-05-30 01:23:28 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2011-05-30 01:23:28 +0200 |
commit | 112bb1672d6b28f203e7839e320b985486636800 (patch) | |
tree | 755fb8dcab211678697f6e03cf37122592b7c573 /git/repo/fun.py | |
parent | 0996049122842a343e0ea7fbbecafddb2b4ba9d3 (diff) | |
download | gitpython-112bb1672d6b28f203e7839e320b985486636800.tar.gz |
Finished moving all repository methods to the respective interfaces and implementations. It seems theoretically work together now, although it clearly is much more complex than ever before.
The repo package was slimmed down to being a module once again, which is only there for compatability actually
Diffstat (limited to 'git/repo/fun.py')
-rw-r--r-- | git/repo/fun.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/git/repo/fun.py b/git/repo/fun.py deleted file mode 100644 index 604d5bc0..00000000 --- a/git/repo/fun.py +++ /dev/null @@ -1,10 +0,0 @@ -"""Package with general repository related functions""" -import os -from git.util import is_git_dir - -__all__ = ('is_git_dir', 'touch') - -def touch(filename): - fp = open(filename, "a") - fp.close() - |