summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/qt/branch_qt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/qt/branch_qt.py b/scripts/qt/branch_qt.py
index 50f23a78..f8ba7713 100755
--- a/scripts/qt/branch_qt.py
+++ b/scripts/qt/branch_qt.py
@@ -379,7 +379,7 @@ class QtBranching:
self.subprocess_or_pretend(['git', 'push', 'gerrit', f'HEAD:refs/heads/{branch}', f'HEAD:refs/staging/{branch}'])
else: # Do formal codereview instead
reviewerStr = f"%r={',r='.join(self.reviewers)}" if self.reviewers else ''
- self.subprocess_or_pretend(['git', 'push', 'gerrit'
+ self.subprocess_or_pretend(['git', 'push', 'gerrit',
f'HEAD:refs/for/{branch}{reviewerStr}'])
def bump_qtbase_datastream(self) -> typing.Iterable[str]: