patchupdate.py: All of the bugs linking to wine-compholio have been moved, remove the exception.

This commit is contained in:
Zebediah Figura
2018-06-19 16:11:56 -05:00
parent 3168a74745
commit a755842e30
2 changed files with 2 additions and 7 deletions

View File

@@ -433,9 +433,7 @@ def check_bug_status(all_patches, sync_bugs=False):
sync_bug_status(bugtracker, bug, url_map[bug['id']])
patchset = bug['cf_staged_patchset']
if '.patch' in patchset: patchset = patchset[0:patchset.rindex('/')].replace('/blob/','/tree/')
if bug['status'] == 'STAGED' and \
patchset != url_map[bug['id']] and \
patchset != url_map[bug['id']].replace('github.com/wine-staging','github.com/wine-compholio'):
if bug['status'] == 'STAGED' and patchset != url_map[bug['id']]:
print 'Invalid staged patchset: #%d - \"%s\" - %s' %(bug['id'], bug['summary'], bug['cf_staged_patchset'])
once = True