diff options
-rw-r--r-- | project.py | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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: |