forked from pool/rpmlint
- update suse-whitelist-opensuse.diff to avoid a false positive
OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=540
This commit is contained in:
parent
72670212f7
commit
dbbe8b55cf
@ -1,3 +1,8 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 24 12:49:34 UTC 2017 - dmueller@suse.com
|
||||
|
||||
- update suse-whitelist-opensuse.diff to avoid a false positive
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 24 08:00:11 UTC 2017 - krahmer@suse.com
|
||||
|
||||
|
@ -28,7 +28,7 @@ index ea131e3..d3da24c 100644
|
||||
if '\n' in summary:
|
||||
printError(pkg, 'summary-on-multiple-lines', lang)
|
||||
- if summary[0] != summary[0].upper():
|
||||
+ if (not summary[0].isupper() and
|
||||
+ if (summary[0] != summary[0].upper() and
|
||||
+ summary.partition(' ')[0] not in CAPITALIZED_IGNORE_LIST):
|
||||
printWarning(pkg, 'summary-not-capitalized', lang, summary)
|
||||
if summary[-1] == '.':
|
||||
|
Loading…
Reference in New Issue
Block a user