diff options
-rw-r--r-- | pym/repoman/checks.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py index b0d8b0bf0..ec8e91324 100644 --- a/pym/repoman/checks.py +++ b/pym/repoman/checks.py @@ -389,10 +389,10 @@ class NoAsNeeded(LineCheck): error = errors.NO_AS_NEEDED class PreserveOldLib(LineCheck): - """Check for calls to the preserve_old_lib function.""" - repoman_check_name = 'upstream.workaround' - re = re.compile(r'.*preserve_old_lib') - error = errors.PRESERVE_OLD_LIB + """Check for calls to the preserve_old_lib function.""" + repoman_check_name = 'upstream.workaround' + re = re.compile(r'.*preserve_old_lib') + error = errors.PRESERVE_OLD_LIB class DeprecatedBindnowFlags(LineCheck): """Check for calls to the deprecated bindnow-flags function.""" |