diff options
Diffstat (limited to 'project.py')
-rwxr-xr-x | project.py | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -176,6 +176,7 @@ class ReviewableBranch(object): | |||
176 | auto_topic=False, | 176 | auto_topic=False, |
177 | draft=False, | 177 | draft=False, |
178 | private=False, | 178 | private=False, |
179 | notify=None, | ||
179 | wip=False, | 180 | wip=False, |
180 | dest_branch=None, | 181 | dest_branch=None, |
181 | validate_certs=True, | 182 | validate_certs=True, |
@@ -185,6 +186,7 @@ class ReviewableBranch(object): | |||
185 | auto_topic=auto_topic, | 186 | auto_topic=auto_topic, |
186 | draft=draft, | 187 | draft=draft, |
187 | private=private, | 188 | private=private, |
189 | notify=notify, | ||
188 | wip=wip, | 190 | wip=wip, |
189 | dest_branch=dest_branch, | 191 | dest_branch=dest_branch, |
190 | validate_certs=validate_certs, | 192 | validate_certs=validate_certs, |
@@ -1118,6 +1120,7 @@ class Project(object): | |||
1118 | auto_topic=False, | 1120 | auto_topic=False, |
1119 | draft=False, | 1121 | draft=False, |
1120 | private=False, | 1122 | private=False, |
1123 | notify=None, | ||
1121 | wip=False, | 1124 | wip=False, |
1122 | dest_branch=None, | 1125 | dest_branch=None, |
1123 | validate_certs=True, | 1126 | validate_certs=True, |
@@ -1174,6 +1177,8 @@ class Project(object): | |||
1174 | 1177 | ||
1175 | opts = ['r=%s' % p for p in people[0]] | 1178 | opts = ['r=%s' % p for p in people[0]] |
1176 | opts += ['cc=%s' % p for p in people[1]] | 1179 | opts += ['cc=%s' % p for p in people[1]] |
1180 | if notify: | ||
1181 | opts += ['notify=' + notify] | ||
1177 | if private: | 1182 | if private: |
1178 | opts += ['private'] | 1183 | opts += ['private'] |
1179 | if wip: | 1184 | if wip: |