Skip to content

Commit

Permalink
use proper placeholder strings in help text
Browse files Browse the repository at this point in the history
  • Loading branch information
bmwiedemann committed Apr 19, 2017
1 parent 7d54b5c commit eb25d6d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions osc/commandline.py
Expand Up @@ -1042,7 +1042,7 @@ def do_meta(self, subcmd, opts, *args):
help='specify message TEXT')
@cmdln.option('-r', '--revision', metavar='REV',
help='specify a certain source revision ID (the md5 sum) for the source package')
@cmdln.option('-s', '--supersede', metavar='SUPERSEDE',
@cmdln.option('-s', '--supersede', metavar='REQUEST_ID',
help='Superseding another request by this one')
@cmdln.option('--nodevelproject', action='store_true',
help='do not follow a defined devel project ' \
Expand Down Expand Up @@ -1678,7 +1678,7 @@ def _set_bugowner(self, args, opts):
help='specify message TEXT')
@cmdln.option('-r', '--revision', metavar='REV',
help='for "create", specify a certain source revision ID (the md5 sum)')
@cmdln.option('-s', '--supersede', metavar='SUPERSEDE',
@cmdln.option('-s', '--supersede', metavar='REQUEST_ID',
help='Superseding another request by this one')
@cmdln.option('--nodevelproject', action='store_true',
help='do not follow a defined devel project ' \
Expand Down Expand Up @@ -3062,7 +3062,7 @@ def do_createincident(self, subcmd, opts, *args):
help='specify incident number to merge in')
@cmdln.option('--incident-project', metavar='INCIDENT_PROJECT',
help='specify incident project to merge in')
@cmdln.option('-s', '--supersede', metavar='SUPERSEDE',
@cmdln.option('-s', '--supersede', metavar='REQUEST_ID',
help='Superseding another request by this one')
@cmdln.alias("mr")
def do_maintenancerequest(self, subcmd, opts, *args):
Expand Down Expand Up @@ -5949,7 +5949,7 @@ def parse_repoarchdescr(self, args, noinit = False, alternative_project = None,
help='build a package which does not exist on the server')
@cmdln.option('--linksources', action='store_true',
help='use hard links instead of a deep copied source')
@cmdln.option('--vm-memory', metavar='TYPE',
@cmdln.option('--vm-memory', metavar='MEMORY',
help='use given MB for VM')
@cmdln.option('--vm-type', metavar='TYPE',
help='use VM type TYPE (e.g. kvm)')
Expand Down

0 comments on commit eb25d6d

Please sign in to comment.