Blame SOURCES/0003-Issue-50701-Fix-type-in-lint-report.patch
|
|
c384d7 |
From 1f4955d5e09f44f19b96dc671a1462cc43ee29a8 Mon Sep 17 00:00:00 2001
|
|
|
c384d7 |
From: Mark Reynolds <mreynolds@redhat.com>
|
|
|
c384d7 |
Date: Mon, 25 Nov 2019 17:24:04 -0500
|
|
|
c384d7 |
Subject: [PATCH] Issue 50701 - Fix type in lint report
|
|
|
c384d7 |
|
|
|
c384d7 |
Description: Fix typo introduced from the previous commit for 50701
|
|
|
c384d7 |
|
|
|
c384d7 |
relates: https://pagure.io/389-ds-base/issue/50701
|
|
|
c384d7 |
|
|
|
c384d7 |
Reviewed by: firstyear(Thanks!)
|
|
|
c384d7 |
---
|
|
|
c384d7 |
src/lib389/lib389/lint.py | 2 +-
|
|
|
c384d7 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
c384d7 |
|
|
|
c384d7 |
diff --git a/src/lib389/lib389/lint.py b/src/lib389/lib389/lint.py
|
|
|
c384d7 |
index 515711136..736dffa14 100644
|
|
|
c384d7 |
--- a/src/lib389/lib389/lint.py
|
|
|
c384d7 |
+++ b/src/lib389/lib389/lint.py
|
|
|
c384d7 |
@@ -42,7 +42,7 @@ DSBLE0002 = {
|
|
|
c384d7 |
'dsle': 'DSBLE0002',
|
|
|
c384d7 |
'severity': 'HIGH',
|
|
|
c384d7 |
'items' : [],
|
|
|
c384d7 |
- 'detail' : """Unable to querying the backend. LDAP error (ERROR)""",
|
|
|
c384d7 |
+ 'detail' : """Unable to query the backend. LDAP error (ERROR)""",
|
|
|
c384d7 |
'fix' : """Check the server's error and access logs for more information."""
|
|
|
c384d7 |
}
|
|
|
c384d7 |
|
|
|
c384d7 |
--
|
|
|
c384d7 |
2.21.0
|
|
|
c384d7 |
|