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