Commit 4c126278 authored by Julien Muchembled's avatar Julien Muchembled

Fix SyntaxError with Python < 2.6

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@45087 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 6f320fb0
......@@ -271,7 +271,7 @@ class Git(WorkingCopy):
GIT_AUTHOR_EMAIL=email, GIT_COMMITTER_EMAIL=email)
else:
env = None
self.git(*args, env=env)
self.git(env=env, *args)
self.clean()
try:
if push:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment