From 17329744efd38618bbc946207750411c712ccf82 Mon Sep 17 00:00:00 2001 From: Tomas Kopecek Date: May 06 2020 13:59:01 +0000 Subject: cli: fix variable name Fixes: https://pagure.io/koji/issue/2210 --- diff --git a/cli/koji_cli/commands.py b/cli/koji_cli/commands.py index a56e958..0c550db 100644 --- a/cli/koji_cli/commands.py +++ b/cli/koji_cli/commands.py @@ -3200,7 +3200,7 @@ def anon_handle_buildinfo(goptions, session, args): print("BUILD: %(name)s-%(version)s-%(release)s [%(id)d]" % info) print("State: %(state)s" % info) if info['state'] == 'BUILDING': - print("Reserved by: %(reserved_by_name)s" % info) + print("Reserved by: %(cg_name)s" % info) print("Built by: %(owner_name)s" % info) source = info.get('source') if source is not None: