Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ipfix/template.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def decode_from(self, buf, offset, packplan = None):
offset += packplan.st.size

# short circuit on no varlen
if not self.varlenslice:
if self.varlenslice is None:
return (vals, offset)

# direct iteration over remaining IEs
Expand Down Expand Up @@ -239,7 +239,7 @@ def encode_to(self, buf, offset, vals, packplan = None):
offset += packplan.st.size

# shortcircuit no varlen
if not self.varlenslice:
if self.varlenslice is None:
return offset

# direct iteration over remaining IEs
Expand Down