summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/Properties.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2015-02-18 08:47:30 -0600
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2015-02-18 08:47:30 -0600
commitdb4a3b0426f4912639c142366ff27594d54ce360 (patch)
treefe258d4b663b9607230e456cfa25cdfe29cb3a70 /src/lib/Bcfg2/Server/Plugins/Properties.py
parented9920711a6020fa01d564db34e0ee4800718cc6 (diff)
parent89e7afbf74ffbbb54dd892bf2c4245aedee2a832 (diff)
downloadbcfg2-db4a3b0426f4912639c142366ff27594d54ce360.tar.gz
bcfg2-db4a3b0426f4912639c142366ff27594d54ce360.tar.bz2
bcfg2-db4a3b0426f4912639c142366ff27594d54ce360.zip
Merge pull request #250 from stpierre/blanket-except-plugins-lint
Remove blanket excepts from plugins and lint
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugins/Properties.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugins/Properties.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/Properties.py b/src/lib/Bcfg2/Server/Plugins/Properties.py
index 28400f6d2..c4dd75e60 100644
--- a/src/lib/Bcfg2/Server/Plugins/Properties.py
+++ b/src/lib/Bcfg2/Server/Plugins/Properties.py
@@ -79,13 +79,12 @@ class PropertyFile(object):
class JSONPropertyFile(Bcfg2.Server.Plugin.FileBacked, PropertyFile):
- """ Handle JSON Properties files. """
+ """Handle JSON Properties files."""
def __init__(self, name):
Bcfg2.Server.Plugin.FileBacked.__init__(self, name)
PropertyFile.__init__(self, name)
self.json = None
- __init__.__doc__ = Bcfg2.Server.Plugin.FileBacked.__init__.__doc__
def Index(self):
try:
@@ -94,21 +93,18 @@ class JSONPropertyFile(Bcfg2.Server.Plugin.FileBacked, PropertyFile):
err = sys.exc_info()[1]
raise PluginExecutionError("Could not load JSON data from %s: %s" %
(self.name, err))
- Index.__doc__ = Bcfg2.Server.Plugin.FileBacked.Index.__doc__
def _write(self):
json.dump(self.json, open(self.name, 'wb'))
return True
- _write.__doc__ = PropertyFile._write.__doc__
def validate_data(self):
try:
json.dumps(self.json)
- except:
+ except TypeError:
err = sys.exc_info()[1]
raise PluginExecutionError("Data for %s cannot be dumped to JSON: "
"%s" % (self.name, err))
- validate_data.__doc__ = PropertyFile.validate_data.__doc__
def __str__(self):
return str(self.json)