forked from pool/rpmlint
12 lines
530 B
Diff
12 lines
530 B
Diff
|
--- TagsCheck.py
|
||
|
+++ TagsCheck.py
|
||
|
@@ -868,7 +868,7 @@
|
||
|
spell_check(pkg, utf8summary, 'Summary(%s)', lang, ignored_words)
|
||
|
if '\n' in summary:
|
||
|
printError(pkg, 'summary-on-multiple-lines', lang)
|
||
|
- if summary[0] != summary[0].upper():
|
||
|
+ if summary[0] != summary[0].upper() and not summary.startswith("openSUSE"):
|
||
|
printWarning(pkg, 'summary-not-capitalized', lang, summary)
|
||
|
if summary[-1] == '.':
|
||
|
printWarning(pkg, 'summary-ended-with-dot', lang, summary)
|