summaryrefslogtreecommitdiffstats
path: root/src/sbin
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2014-01-30 15:59:43 -0500
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2014-01-30 15:59:43 -0500
commit29b16ebd00742cddca94f740917d1c0191667fc6 (patch)
tree93775e5d41d9294d7fd5d333c6cca4edc88b0ba3 /src/sbin
parent8ac001a3dffebf8e7d3fa7db20f13e58b90dd5b4 (diff)
downloadbcfg2-29b16ebd00742cddca94f740917d1c0191667fc6.tar.gz
bcfg2-29b16ebd00742cddca94f740917d1c0191667fc6.tar.bz2
bcfg2-29b16ebd00742cddca94f740917d1c0191667fc6.zip
fixed more pylint tests
Diffstat (limited to 'src/sbin')
-rwxr-xr-xsrc/sbin/bcfg2-yum-helper3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sbin/bcfg2-yum-helper b/src/sbin/bcfg2-yum-helper
index 132f9efce..227d977de 100755
--- a/src/sbin/bcfg2-yum-helper
+++ b/src/sbin/bcfg2-yum-helper
@@ -15,7 +15,8 @@ from lockfile import FileLock, LockTimeout
from optparse import OptionParser
try:
import json
- json.loads # py2.4 json library is structured differently
+ # py2.4 json library is structured differently
+ json.loads # pylint: disable=W0104
except (ImportError, AttributeError):
import simplejson as json