From b416f7f4183302f77396890dd5d9c6a4707e1650 Mon Sep 17 00:00:00 2001 From: fawce Date: Tue, 17 Jul 2012 14:09:38 -0400 Subject: [PATCH] tweak --- zipline/core/monitor.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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')