summaryrefslogtreecommitdiffstats
path: root/scripts/qt/branch_qt.py
diff options
context:
space:
mode:
authorJani Heikkinen <jani.heikkinen@qt.io>2021-11-01 15:04:12 +0200
committerJani Heikkinen <jani.heikkinen@qt.io>2021-11-02 07:39:34 +0200
commit48751a886c4d3095fe871e1099242c75262856b8 (patch)
tree255d2da40a81e3127981d0294967846ecbe98ee3 /scripts/qt/branch_qt.py
parent574c8f580445354c19a3c8fafb77368d9c2693a3 (diff)
Add missing ',' for 'formal codereview' case
Pick-to: master Change-Id: I25164e101d70225040a08e521d84cc8aee3913b4 Reviewed-by: Paul Wicking <paul.wicking@qt.io> Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Diffstat (limited to 'scripts/qt/branch_qt.py')
-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]: