summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSol Jerome <sol.jerome@gmail.com>2013-10-07 15:44:41 -0500
committerSol Jerome <sol.jerome@gmail.com>2013-10-07 15:44:41 -0500
commitd8e61a655c28f83c1c6049f4033999ad14aecf8a (patch)
tree95c47191a2857436eed4de694f675559c66f251e
parent45863fb1d059b420fef3739acb75e15d234f30e3 (diff)
downloadbcfg2-d8e61a655c28f83c1c6049f4033999ad14aecf8a.tar.gz
bcfg2-d8e61a655c28f83c1c6049f4033999ad14aecf8a.tar.bz2
bcfg2-d8e61a655c28f83c1c6049f4033999ad14aecf8a.zip
SSHbase: Fix print statement for python 3
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
-rw-r--r--src/lib/Bcfg2/Server/Plugins/SSHbase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/SSHbase.py b/src/lib/Bcfg2/Server/Plugins/SSHbase.py
index 9b1e63831..1bb4ec9f0 100644
--- a/src/lib/Bcfg2/Server/Plugins/SSHbase.py
+++ b/src/lib/Bcfg2/Server/Plugins/SSHbase.py
@@ -411,7 +411,7 @@ class SSHbase(Bcfg2.Server.Plugin.Plugin,
except Bcfg2.Server.Plugin.PluginExecutionError:
import lxml.etree
- print "failed to bind %s: %s" % (
+ print("failed to bind %s: %s") % (
lxml.etree.tostring(entry),
sys.exc_info()[1])
pass