1
0
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:
Adrian Schröter 2015-05-05 14:01:10 +02:00
parent ab111f4204
commit 464652ab85
2 changed files with 5 additions and 1 deletions

1
NEWS
View File

@ -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)

View File

@ -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 = ''