diff options
author | Florian Apolloner <florian@apolloner.eu> | 2008-05-20 23:43:56 +0200 |
---|---|---|
committer | Florian Apolloner <florian@apolloner.eu> | 2008-05-20 23:43:56 +0200 |
commit | 30472cf3132b8c03e528b23d1c7533de740e28ab (patch) | |
tree | ceefe0db24c028e19f4545d6cd69dab741a970a7 | |
parent | ae54e18d7ca7bc8b8fbc667119fb60b25f0f3871 (diff) | |
download | gitpython-30472cf3132b8c03e528b23d1c7533de740e28ab.tar.gz |
removed some unused stuff
-rw-r--r-- | lib/git_python/git.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/git_python/git.py b/lib/git_python/git.py index 25cd1cce..8711c1fb 100644 --- a/lib/git_python/git.py +++ b/lib/git_python/git.py @@ -74,10 +74,10 @@ class Git(MethodMissingMixin): str """ opt_args = self.transform_kwargs(**kwargs) - ext_args = map(lambda a: (a == '--') and a or "%s" % a, args) - args = opt_args + ext_args + args = opt_args + list(args) call = ['git-'+dashify(method)] call.extend(args) + stdout_value = self.execute(call) return stdout_value |