From acbb8cc521491b703f879e70a4ccef74b929737e Mon Sep 17 00:00:00 2001 From: Mike McLean Date: Thu, 3 Oct 2024 17:55:31 -0400 Subject: [PATCH] avoid malformed tasks for update signatures --- koji/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/koji/__init__.py b/koji/__init__.py index ac514ab8..48cf99f1 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'):