From 682ea37cfb7e20366521fd48fc98826a21344942 Mon Sep 17 00:00:00 2001 From: Naoki Kambe Date: Mon, 4 Apr 2011 06:35:56 +0000 Subject: [PATCH] [trac521] add string-casting for the verbose message --- src/bin/bind10/bind10.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/bind10/bind10.py.in b/src/bin/bind10/bind10.py.in index ec3c1652e..f078a525a 100755 --- a/src/bin/bind10/bind10.py.in +++ b/src/bin/bind10/bind10.py.in @@ -272,7 +272,7 @@ class BoB: def command_handler(self, command, args): if self.verbose: - sys.stdout.write("[bind10] Boss got command: " + command + "\n") + sys.stdout.write("[bind10] Boss got command: " + str(command) + "\n") answer = isc.config.ccsession.create_answer(1, "command not implemented") if type(command) != str: answer = isc.config.ccsession.create_answer(1, "bad command") -- GitLab