mirror of
https://github.com/openSUSE/osc.git
synced 2025-02-02 09:46:16 +01:00
show possible used incident projects on "maintained" command
FATE#318944
This commit is contained in:
parent
ab111f4204
commit
464652ab85
1
NEWS
1
NEWS
@ -1,6 +1,7 @@
|
||||
0.152
|
||||
- support buildtime source services
|
||||
- add support searching for groups via "group:" prefix
|
||||
- show possible used incident projects on "maintained" command
|
||||
|
||||
0.151
|
||||
- fixed shell command injection via crafted _service files (CVE-2015-0778)
|
||||
|
@ -3062,7 +3062,10 @@ Please submit there instead, or use --nodevelproject to force direct submission.
|
||||
|
||||
if opts.dryrun:
|
||||
for r in result.findall('package'):
|
||||
print("%s/%s"%(r.get('project'), r.get('package')))
|
||||
line="%s/%s"%(r.get('project'), r.get('package'))
|
||||
for d in r.findall('devel'):
|
||||
line+=" using sources from %s/%s"%(d.get('project'), d.get('package'))
|
||||
print(line)
|
||||
return
|
||||
|
||||
apiopt = ''
|
||||
|
Loading…
Reference in New Issue
Block a user