diff --git a/zipline/core/monitor.py b/zipline/core/monitor.py index c5a5149d..33db3e8d 100644 --- a/zipline/core/monitor.py +++ b/zipline/core/monitor.py @@ -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')