forked from pool/rpmlint
OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=504
This commit is contained in:
parent
2d2af816d1
commit
3487f7c4e6
@ -26,9 +26,9 @@
|
||||
- xs = x.split()
|
||||
- return (xs[2], xs[1])
|
||||
+ xs = x.split(maxsplit=2)
|
||||
+ # Primary Sort by Category: Info first, then Warnings, then Errors
|
||||
+ # Sort Category (Info/Warnings/Errors), Diagnostic, Name
|
||||
+ # ['game.x86_64:', 'W:', 'call-to-mktemp /usr/games/lib/blub\n']
|
||||
+ return (xs[2], str('IWE'.find(xs[1][0])), xs[0])
|
||||
+ return (str('IWE'.find(xs[1][0])), xs[2], xs[0])
|
||||
|
||||
|
||||
def printAllReasons():
|
||||
|
Loading…
Reference in New Issue
Block a user