Browse Source

[trac521] add string-casting for the verbose message

Naoki Kambe 14 years ago
parent
commit
682ea37cfb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/bin/bind10/bind10.py.in

+ 1 - 1
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")