Skip to content
Snippets Groups Projects
Commit fafbfba3 authored by Guillaume Valadon's avatar Guillaume Valadon
Browse files

Only show ConditionalField if the evaluation is True for psdump() and...

Only show ConditionalField if the evaluation is True for psdump() and pdfdump() methods - by Martin Gallo

--HG--
branch : PR#39 refactored
parent 9484e8bd
No related branches found
No related tags found
No related merge requests found
......@@ -345,6 +345,8 @@ class Packet(BasePacket):
pl = []
q=""
for f in self.fields_desc:
if isinstance(f, ConditionalField) and not f._evalcond(self):
continue
p = f.addfield(self, p, self.getfieldval(f.name) )
if type(p) is str:
r = p[len(q):]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment