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