Skip to content
Snippets Groups Projects
Commit 24b1ce41 authored by Anael Beutot's avatar Anael Beutot
Browse files

Fix typo (signal instead of signal_).

parent 7b8d3f07
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment