Show More
@@ -232,7 +232,7 b' are sent to the Bugzilla email address' | |||
|
232 | 232 | bzurl=http://my-project.org/bugzilla |
|
233 | 233 | user=bugmail@my-project.org |
|
234 | 234 | password=plugh |
|
235 | version=xmlrpc | |
|
235 | version=xmlrpc+email | |
|
236 | 236 | bzemail=bugzilla@my-project.org |
|
237 | 237 | template=Changeset {node|short} in {root|basename}. |
|
238 | 238 | {hgweb}/{webroot}/rev/{node|short}\\n |
@@ -164,6 +164,9 b' def deletedivergent(repo, deletefrom, bm' | |||
|
164 | 164 | marks = repo._bookmarks |
|
165 | 165 | divergent = [b for b in marks if b.split('@', 1)[0] == bm.split('@', 1)[0]] |
|
166 | 166 | for mark in divergent: |
|
167 | if mark == '@' or '@' not in mark: | |
|
168 | # can't be divergent by definition | |
|
169 | continue | |
|
167 | 170 | if mark and marks[mark] in deletefrom: |
|
168 | 171 | if mark != bm: |
|
169 | 172 | del marks[mark] |
General Comments 0
You need to be logged in to leave comments.
Login now