From 24b1ce413497ae7140539749f81c7cc8266f93cc Mon Sep 17 00:00:00 2001 From: Anael Beutot <anael.beutot@smartjog.com> Date: Wed, 30 May 2012 18:14:34 +0200 Subject: [PATCH] Fix typo (signal instead of signal_). --- ccnode/node.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ccnode/node.py b/ccnode/node.py index e0f4abb..6b6d359 100644 --- a/ccnode/node.py +++ b/ccnode/node.py @@ -188,9 +188,9 @@ class MainLoop(object): # turn into real watchers self.signals = dict(( - signal, - self.evloop.signal(signal, cb), - ) for signal, cb in self.signals.iteritems()) + signal_, + self.evloop.signal(signal_, cb), + ) for signal_, cb in self.signals.iteritems()) # load config variables self.config = NodeConfigParser(self.config_path) -- GitLab