diff options
Diffstat (limited to 'lib/git/utils.py')
-rw-r--r-- | lib/git/utils.py | 5 |
1 files changed, 5 insertions, 0 deletions
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() |