diff options
author | Florian Apolloner <florian@apolloner.eu> | 2008-05-20 23:26:06 +0200 |
---|---|---|
committer | Florian Apolloner <florian@apolloner.eu> | 2008-05-20 23:26:06 +0200 |
commit | ae54e18d7ca7bc8b8fbc667119fb60b25f0f3871 (patch) | |
tree | 6ae9d3978476b54653f426bd971d07e46f8d368b /lib/git_python/utils.py | |
parent | 9b975d9fcf5924800f9ea5d68d7d79f743ca9af7 (diff) | |
download | gitpython-ae54e18d7ca7bc8b8fbc667119fb60b25f0f3871.tar.gz |
made subprocess not use a shell...
Diffstat (limited to 'lib/git_python/utils.py')
-rw-r--r-- | lib/git_python/utils.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/git_python/utils.py b/lib/git_python/utils.py index 2bd6f2cd..c2140ba0 100644 --- a/lib/git_python/utils.py +++ b/lib/git_python/utils.py @@ -1,6 +1,3 @@ -def shell_escape(string): - return str(string).replace("'", "\\\\'") - def dashify(string): return string.replace('_', '-') |