summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/FileProbes.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugins/FileProbes.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugins/FileProbes.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/FileProbes.py b/src/lib/Bcfg2/Server/Plugins/FileProbes.py
index 38f9403f5..b7d78bf75 100644
--- a/src/lib/Bcfg2/Server/Plugins/FileProbes.py
+++ b/src/lib/Bcfg2/Server/Plugins/FileProbes.py
@@ -38,7 +38,7 @@ if not os.path.exists(path):
try:
stat = os.stat(path)
-except:
+except OSError:
sys.stderr.write("Could not stat %%s: %%s" %% (path, sys.exc_info()[1]))
raise SystemExit(0)
data = Bcfg2.Client.XML.Element("ProbedFileData",
@@ -48,7 +48,7 @@ data = Bcfg2.Client.XML.Element("ProbedFileData",
mode=oct_mode(stat[0] & 4095))
try:
data.text = b64encode(open(path).read())
-except:
+except IOError:
sys.stderr.write("Could not read %%s: %%s" %% (path, sys.exc_info()[1]))
raise SystemExit(0)
print(Bcfg2.Client.XML.tostring(data, xml_declaration=False).decode('UTF-8'))