From 92f2b89d3e9da6b3b59203002b4ff9a74432b1fa Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Wed, 22 Feb 2017 13:44:56 -0800 Subject: [PATCH] journal: fix syntax --- src/wormhole/journal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wormhole/journal.py b/src/wormhole/journal.py index 69f0bf5..7d640ea 100644 --- a/src/wormhole/journal.py +++ b/src/wormhole/journal.py @@ -11,7 +11,7 @@ class Journal(object): def queue_outbound(self, fn, *args, **kwargs): assert self._processing - self._outbound_queue.append((fn, args, kwargs) + self._outbound_queue.append((fn, args, kwargs)) @contextlib.contextmanager def process(self):