avoid malformed tasks for update signatures

This commit is contained in:
Mike McLean 2024-10-03 17:55:31 -04:00 committed by Tomas Kopecek
parent 7904e4e079
commit acbb8cc521

View file

@ -3729,6 +3729,8 @@ def _taskLabel(taskInfo):
# at this place (e.g. client without knowledge of such signatures)
# it should still display at least "method (arch)"
params = None
except ParameterError:
return '%s (%s, unknown args)' % (method, arch)
extra = ''
if method in ('build', 'maven'):