From acbb8cc521491b703f879e70a4ccef74b929737e Mon Sep 17 00:00:00 2001 From: Mike McLean Date: Feb 05 2025 13:42:29 +0000 Subject: avoid malformed tasks for update signatures --- diff --git a/koji/__init__.py b/koji/__init__.py index ac514ab..48cf99f 100644 --- a/koji/__init__.py +++ b/koji/__init__.py @@ -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'):