From 233e3ffe0ef35dbabe49340ba567499690dcc166 Mon Sep 17 00:00:00 2001 From: Michael Trier Date: Fri, 30 May 2008 21:01:44 -0400 Subject: renamed git_python to git. Removed pop_key and replaced with dict.pop. Fixed up tests so they pass except for stderr test. Modified version information retrieval. --- lib/git/utils.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 lib/git/utils.py (limited to 'lib/git/utils.py') diff --git a/lib/git/utils.py b/lib/git/utils.py new file mode 100644 index 00000000..c2140ba0 --- /dev/null +++ b/lib/git/utils.py @@ -0,0 +1,5 @@ +def dashify(string): + return string.replace('_', '-') + +def touch(filename): + open(filename, "a").close() -- cgit v1.2.1