فهرست منبع

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>
Shawn O. Pearce 15 سال پیش
والد
کامیت
60829ba72f
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      subcmds/upload.py

+ 2 - 2
subcmds/upload.py

@@ -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: