summaryrefslogtreecommitdiffstats
path: root/project.py
diff options
context:
space:
mode:
Diffstat (limited to 'project.py')
-rw-r--r--project.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/project.py b/project.py
index 295fb10f..22e4a5d6 100644
--- a/project.py
+++ b/project.py
@@ -946,6 +946,11 @@ class Project(object):
946 dest_branch) 946 dest_branch)
947 if auto_topic: 947 if auto_topic:
948 ref_spec = ref_spec + '/' + branch.name 948 ref_spec = ref_spec + '/' + branch.name
949 if not url.startswith('ssh://'):
950 rp = ['r=%s' % p for p in people[0]] + \
951 ['cc=%s' % p for p in people[1]]
952 if rp:
953 ref_spec = ref_spec + '%' + ','.join(rp)
949 cmd.append(ref_spec) 954 cmd.append(ref_spec)
950 955
951 if GitCommand(self, cmd, bare = True).Wait() != 0: 956 if GitCommand(self, cmd, bare = True).Wait() != 0: