From cdb8fabcbbd1054bc5b1c7ba07f6f45491d90383 Mon Sep 17 00:00:00 2001 From: Michal Vyskocil Date: Tue, 10 Nov 2009 09:36:32 +0000 Subject: [PATCH] osc my - show maintained packages by default --- osc/commandline.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/osc/commandline.py b/osc/commandline.py index 11aa337b..df872a5f 100755 --- a/osc/commandline.py +++ b/osc/commandline.py @@ -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])