1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-26 06:46:13 +01:00

Remove deprecated '--oldpkg', '--oldprj' options from the 'rdiff' command

This commit is contained in:
Daniel Mach 2022-08-25 10:04:15 +02:00
parent dc22af0183
commit 364a945440

View File

@ -3908,12 +3908,6 @@ Please submit there instead, or use --nodevelproject to force direct submission.
run_pager(diff)
@cmdln.option('--oldprj', metavar='OLDPRJ',
help='project to compare against'
' (deprecated, use 3 argument form)')
@cmdln.option('--oldpkg', metavar='OLDPKG',
help='package to compare against'
' (deprecated, use 3 argument form)')
@cmdln.option('--issues-only', action='store_true',
help='show only issues in diff')
@cmdln.option('-M', '--meta', action='store_true',
@ -3960,13 +3954,7 @@ Please submit there instead, or use --nodevelproject to force direct submission.
if len(args) == 2:
new_project = self._process_project_name(args[0])
new_package = args[1]
if opts.oldprj:
old_project = opts.oldprj
if opts.oldpkg:
old_package = opts.oldpkg
elif len(args) == 3 or len(args) == 4:
if opts.oldprj or opts.oldpkg:
raise oscerr.WrongArgs('--oldpkg and --oldprj are only valid with two arguments')
old_project = self._process_project_name(args[0])
new_package = old_package = args[1]
new_project = self._process_project_name(args[2])