1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-20 01:06:17 +02:00

osc my - show maintained packages by default

This commit is contained in:
Michal Vyskocil 2009-11-10 09:36:32 +00:00
parent 0019f08255
commit cdb8fabcbb

View File

@ -3245,7 +3245,9 @@ Please submit there instead, or use --nodevelproject to force direct submission.
args = []
if opts.user: args = [ opts.user ]
if opts.all: opts.involved = True
else: opts.bugowner = True
else:
opts.bugowner = True
opts.maintained = True
return self.do_search('se', opts, *args)
raise oscerr.WrongArgs('Unknown arg "%s": Please specify one of projects/packages/requests' % args[0])