diff options
author | Marko Kreen | 2012-07-17 14:49:14 +0000 |
---|---|---|
committer | Marko Kreen | 2012-07-18 09:36:00 +0000 |
commit | 2da87b297d7bf3c7aef69cec05a4474799041f41 (patch) | |
tree | c71112a2f318d59d4cfea8da029609e7bac6d261 | |
parent | 3f427bd2e767f1ee760f5309aa08a149e11efbf4 (diff) |
pgq.LocalConsumer: fix exception message
-rw-r--r-- | python/pgq/localconsumer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/pgq/localconsumer.py b/python/pgq/localconsumer.py index 780f9219..55ea15b2 100644 --- a/python/pgq/localconsumer.py +++ b/python/pgq/localconsumer.py @@ -120,7 +120,7 @@ class LocalConsumer(pgq.Consumer): self.process_local_event(db, batch_id, ev) def process_local_event(self, db, batch_id, ev): - raise Exception('process_remote_batch not implemented') + raise Exception('process_local_event not implemented') def is_batch_done(self): """Helper function to keep track of last successful batch |