1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-02-02 17:56:15 +01:00

- use "group:" prefix instead of "group/" like in other commands

This commit is contained in:
Adrian Schröter 2015-04-24 09:47:12 +02:00
parent 95cfc2b96c
commit 6886a0d58c
2 changed files with 5 additions and 1 deletions

4
NEWS
View File

@ -1,3 +1,7 @@
0.152
- support buildtime source services
- add support searching for groups via "group:" prefix
0.151 0.151
- fixed shell command injection via crafted _service files (CVE-2015-0778) - fixed shell command injection via crafted _service files (CVE-2015-0778)
- fix times when data comes from OBS backend - fix times when data comes from OBS backend

View File

@ -6746,7 +6746,7 @@ Please submit there instead, or use --nodevelproject to force direct submission.
# role filter # role filter
role_filter = '' role_filter = ''
if opts.bugowner or opts.maintainer or opts.involved: if opts.bugowner or opts.maintainer or opts.involved:
tmp = search_term.split('/') tmp = search_term.split(':')
if len(tmp) > 1: if len(tmp) > 1:
search_type, search_term = [tmp[0], tmp[1]] search_type, search_term = [tmp[0], tmp[1]]
else: else: