This commit is contained in:
fawce
2012-07-17 14:09:38 -04:00
parent 1262dcdef1
commit b416f7f418
+1 -2
View File
@@ -33,8 +33,7 @@ class UnknownChatter(Exception):
def __init__(self, name):
self.named = name
def __str__(self):
return "Component calling itself '%s' talking on unexpected channel"
% self.named
return """Component calling itself "%s" talking on unexpected channel""" % self.named
log = logbook.Logger('Controller')