summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/FileProbes.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-08-15 08:21:19 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-08-15 08:21:19 -0400
commite911b57eb38dfa0fc06d19e70e02e121ae721e57 (patch)
tree350c41f512f831d48bd538c84e64fc714fe760d1 /src/lib/Bcfg2/Server/Plugins/FileProbes.py
parent8207c9c78a94d316bfbd582b2672796e488319b5 (diff)
downloadbcfg2-e911b57eb38dfa0fc06d19e70e02e121ae721e57.tar.gz
bcfg2-e911b57eb38dfa0fc06d19e70e02e121ae721e57.tar.bz2
bcfg2-e911b57eb38dfa0fc06d19e70e02e121ae721e57.zip
print function fixes
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 f95c05d42..a403c78d7 100644
--- a/src/lib/Bcfg2/Server/Plugins/FileProbes.py
+++ b/src/lib/Bcfg2/Server/Plugins/FileProbes.py
@@ -24,7 +24,7 @@ import lxml.etree
path = "%s"
if not os.path.exists(path):
- print "%%s does not exist" %% path
+ print("%%s does not exist" %% path)
raise SystemExit(1)
stat = os.stat(path)
@@ -34,7 +34,7 @@ data = lxml.etree.Element("ProbedFileData",
group=grp.getgrgid(stat[5])[0],
perms=oct(stat[0] & 07777))
data.text = binascii.b2a_base64(open(path).read())
-print lxml.etree.tostring(data)
+print(lxml.etree.tostring(data))
"""
class FileProbes(Bcfg2.Server.Plugin.Plugin,