Skip to content

Commit

Permalink
packet.icmpv6: Add missing call to superclass constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
MurphyMc committed Oct 1, 2013
1 parent f509440 commit 5c47812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pox/lib/packet/icmpv6.py
Original file line number Diff line number Diff line change
Expand Up @@ -929,10 +929,10 @@ class icmpv6 (packet_base):
MIN_LEN = 4

def __init__ (self, raw=None, prev=None, **kw):
super(icmpv6, self).__init__()

self.prev = prev

self.raw = None
self.type = 0
self.code = 0
self.csum = 0
Expand Down

0 comments on commit 5c47812

Please sign in to comment.