From 1355643fed844a58d0d76da03f2af68526e78ce0 Mon Sep 17 00:00:00 2001 From: Alex Iribarren Date: Sep 28 2021 15:22:27 +0000 Subject: Fix short option of --profile --- diff --git a/src/bin/kojitop b/src/bin/kojitop index 2b47946..0aee2de 100755 --- a/src/bin/kojitop +++ b/src/bin/kojitop @@ -121,7 +121,7 @@ def howlong(timestr): parser = OptionParser(usage="%prog tag ") parser.add_option('-c', '--channel', default='default', help='limit to a channel') -parser.add_option('-r', '--profile', default='koji', help='set the koji profile') +parser.add_option('-p', '--profile', default='koji', help='set the koji profile') options, args = parser.parse_args() confopts = koji.read_config(options.profile) session = koji.ClientSession(confopts['server'])