Show More
@@ -194,7 +194,7 b' class bugzilla_2_16(object):' | |||||
194 | self.run('select bug_id from bugs where bug_id in %s' % buglist(ids)) |
|
194 | self.run('select bug_id from bugs where bug_id in %s' % buglist(ids)) | |
195 | return sorted([c[0] for c in self.cursor.fetchall()]) |
|
195 | return sorted([c[0] for c in self.cursor.fetchall()]) | |
196 |
|
196 | |||
197 |
def filter_ |
|
197 | def filter_cset_known_bug_ids(self, node, ids): | |
198 | '''filter bug ids from list that already refer to this changeset.''' |
|
198 | '''filter bug ids from list that already refer to this changeset.''' | |
199 |
|
199 | |||
200 | self.run('''select bug_id from longdescs where |
|
200 | self.run('''select bug_id from longdescs where | |
@@ -376,7 +376,7 b' class bugzilla(object):' | |||||
376 | if ids: |
|
376 | if ids: | |
377 | ids = self.filter_real_bug_ids(ids) |
|
377 | ids = self.filter_real_bug_ids(ids) | |
378 | if ids: |
|
378 | if ids: | |
379 |
ids = self.filter_ |
|
379 | ids = self.filter_cset_known_bug_ids(ctx.node(), ids) | |
380 | return ids |
|
380 | return ids | |
381 |
|
381 | |||
382 | def update(self, bugid, ctx): |
|
382 | def update(self, bugid, ctx): |
General Comments 0
You need to be logged in to leave comments.
Login now