Skip to content

Commit

Permalink
fix layer initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
mhils committed Aug 31, 2015
1 parent 7450bef commit 41e6e53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmproxy/protocol/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ def __init__(self, ctx, *args, **kwargs):
Args:
ctx: The (read-only) higher layer.
"""
super(Layer, self).__init__(*args, **kwargs)
self.ctx = ctx
super(Layer, self).__init__(*args, **kwargs)

def __call__(self):
"""
Expand Down

0 comments on commit 41e6e53

Please sign in to comment.