From d0b9725a9d69eff73baee3ce9c22d70b9c2d72ea Mon Sep 17 00:00:00 2001 From: Mike McLean Date: Oct 03 2024 21:55:31 +0000 Subject: avoid malformed tasks for update signatures --- diff --git a/koji/__init__.py b/koji/__init__.py index 7a8111e..b104b93 100644 --- a/koji/__init__.py +++ b/koji/__init__.py @@ -3724,6 +3724,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'):