upload: Fix --replace flag

--replace started to fail due to a Python error, I forgot to pass
through the opt structure to the replace function.

Change-Id: Ifcd7a0c715c3fd9070a4c58208612a626382de35
Signed-off-by: Shawn O. Pearce <sop@google.com>
This commit is contained in:
Shawn O. Pearce 2010-07-16 07:42:45 -07:00
parent a22f99ae41
commit 60829ba72f

View File

@ -262,7 +262,7 @@ Gerrit Code Review: http://code.google.com/p/gerrit/
except:
return ""
def _ReplaceBranch(self, project, people):
def _ReplaceBranch(self, opt, project, people):
branch = project.CurrentBranch
if not branch:
print >>sys.stdout, "no branches ready for upload"
@ -388,7 +388,7 @@ Gerrit Code Review: http://code.google.com/p/gerrit/
print >>sys.stderr, \
'error: --replace requires exactly one project'
sys.exit(1)
self._ReplaceBranch(project_list[0], people)
self._ReplaceBranch(opt, project_list[0], people)
return
for project in project_list: