Reformated printing of jail's name to be consistent with init's info messages

pull/29/head
Lee Clemens 2012-01-12 00:32:37 -05:00
parent a1898b1840
commit 642d9afb9a
1 changed files with 2 additions and 2 deletions

View File

@ -70,9 +70,9 @@ class Jail:
"Backend %r failed to initialize due to %s" % (b, e))
# log error since runtime error message isn't printed, INVALID COMMAND
logSys.error(
"Failed to initialize any backend for jail %s" % self.__name)
"Failed to initialize any backend for Jail %r" % self.__name)
raise RuntimeError(
"Failed to initialize any backend for jail %s" % self.__name)
"Failed to initialize any backend for jail %r" % self.__name)
def _initPolling(self):