diff options
-rw-r--r-- | ryu/ofproto/ofproto_v1_3_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ryu/ofproto/ofproto_v1_3_parser.py b/ryu/ofproto/ofproto_v1_3_parser.py index d2f175e9..e3fc5885 100644 --- a/ryu/ofproto/ofproto_v1_3_parser.py +++ b/ryu/ofproto/ofproto_v1_3_parser.py @@ -1454,7 +1454,7 @@ class OFPPacketQueue(MsgBase): def __init__(self, datapath): super(OFPPacketQueue, self).__init__(datapath) - @clasmethod + @classmethod def parser(cls, buf, offset): (msg.queue_id, msg.port, msg.len) = struct.unpack_from( ofproto_v1_3.OFP_PACKET_QUEUE_PACK_STR, buf, offset) |