Skip to content

Commit

Permalink
fix for jasonrbriggs#99 (on_before_message throwing a 'not iterable' …
Browse files Browse the repository at this point in the history
…error)
  • Loading branch information
jasonrbriggs authored and nigelsim committed Jun 2, 2016
1 parent 514b109 commit 5f42d3f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions stomp/transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,8 @@ def notify(self, frame_type, headers=None, body=None):
(headers, body) = rtn
if rtn:
return rtn
else:
return (headers, body)

def transmit(self, frame):
"""
Expand Down

0 comments on commit 5f42d3f

Please sign in to comment.