Correct set_in_progress parameters

Update the callers of update_bug.set_in_progress() to drop the
uploader parameter which was removed previously in change
I1e08ed0dfa62a1d59084a19d87e3af317dabad04.

Change-Id: I966ecfdf634009e8c2ba89bb5c52d9e4df1e73e4
This commit is contained in:
Jeremy Stanley 2021-04-13 20:14:04 +00:00
parent 6eca4077d0
commit 864e17f9d1
1 changed files with 2 additions and 4 deletions

View File

@ -211,8 +211,7 @@ def process_bugtask(launchpad, task, git_log, args):
if args.branch == 'master':
if (bugtask.status not in [u'Fix Committed', u'Fix Released'] and
task.needs_change('set_in_progress')):
set_in_progress(bugtask, launchpad,
args.uploader, args.change_url)
set_in_progress(bugtask, launchpad, args.change_url)
else:
series = args.branch.rsplit('/', 1)[-1]
@ -223,8 +222,7 @@ def process_bugtask(launchpad, task, git_log, args):
task.needs_change('set_in_progress') and
reltask.status not in [u'Fix Committed',
u'Fix Released']):
set_in_progress(reltask, launchpad,
args.uploader, args.change_url)
set_in_progress(reltask, launchpad, args.change_url)
break
if args.patchset == '1' and (task.needs_change('add_comment') or