From 09b6b564bbf9f7b9e4a4a06193311dd6752ce0f5 Mon Sep 17 00:00:00 2001 From: fawce Date: Thu, 12 Jul 2012 11:47:48 -0400 Subject: [PATCH] longer period for heartbeat. --- zipline/core/monitor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipline/core/monitor.py b/zipline/core/monitor.py index de0a8b59..05bdfce1 100644 --- a/zipline/core/monitor.py +++ b/zipline/core/monitor.py @@ -33,7 +33,7 @@ class UnknownChatter(Exception): def __init__(self, name): self.named = name def __str__(self): - return """Component calling itself "%s" talking on unexpected channel"""\ + return "Component calling itself '%s' talking on unexpected channel" % self.named