From 112bb1672d6b28f203e7839e320b985486636800 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Mon, 30 May 2011 01:23:28 +0200 Subject: 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 --- git/repo/fun.py | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 git/repo/fun.py (limited to 'git/repo/fun.py') 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() - -- cgit v1.2.3