##// END OF EJS Templates
bugzilla hook: skip empty groups.
Vadim Gelfer -
r2239:5e5adc19 default
parent child Browse files
Show More
@@ -214,6 +214,7 b' class bugzilla(object):'
214 break
214 break
215 start = m.end()
215 start = m.end()
216 for id in bugzilla._split_re.split(m.group(1)):
216 for id in bugzilla._split_re.split(m.group(1)):
217 if not id: continue
217 ids[int(id)] = 1
218 ids[int(id)] = 1
218 ids = ids.keys()
219 ids = ids.keys()
219 if ids:
220 if ids:
General Comments 0
You need to be logged in to leave comments. Login now