From aa1007be2690f75d4aa32cfebad0b472137c85b3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Mon, 13 Apr 2009 13:24:20 +0100 Subject: [PATCH] Cope with recursive calls tags in the XML. --- xml2txt.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xml2txt.py b/xml2txt.py index b73d146..f9fde2e 100755 --- a/xml2txt.py +++ b/xml2txt.py @@ -248,6 +248,8 @@ class TraceParser(XmlParser): args.append(arg) elif self.token.name_or_data == 'ret': ret = self.parse_ret() + elif self.token.name_or_data == 'call': + self.parse_call() else: raise TokenMismatch(" or ", self.token) self.element_end('call') -- 2.45.2