Skip to content

Commit

Permalink
Fixes typo handlers -> events. Closes #9
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Mar 8, 2013
1 parent 2c548cb commit c79d7a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion amqp/channel.py
Expand Up @@ -2464,7 +2464,7 @@ def _confirm_select_ok(self, args):
def _basic_ack_recv(self, args):
delivery_tag = args.read_longlong()
multiple = args.read_bit()
for callback in self.handlers['basic_ack']:
for callback in self.events['basic_ack']:
callback(delivery_tag, multiple)

_METHOD_MAP = {
Expand Down

0 comments on commit c79d7a2

Please sign in to comment.