diff --git a/rpmlint.changes b/rpmlint.changes index bc38ec2..7e32308 100644 --- a/rpmlint.changes +++ b/rpmlint.changes @@ -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 diff --git a/suse-whitelist-opensuse.diff b/suse-whitelist-opensuse.diff index 75071e3..3d2dc28 100644 --- a/suse-whitelist-opensuse.diff +++ b/suse-whitelist-opensuse.diff @@ -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] == '.':