https://pagure.io/koji/issue/682
correct wrong mapping in print format
This commit is contained in:
Franz Chih-Ping Hsieh 2017-11-07 10:54:20 -05:00
parent 7acaf4ce77
commit 699ba58e44

View file

@ -973,7 +973,7 @@ def anon_handle_mock_config(goptions, session, args):
else:
repo = session.getRepo(target['build_tag'])
if not repo:
print(_("Could not get a repo for tag: %(name)s") % opts['tag_name'])
print(_("Could not get a repo for tag: %s") % opts['tag_name'])
return 1
opts['repoid'] = repo['id']
else: