mirror of
https://github.com/bkerler/edl.git
synced 2024-11-14 19:14:58 -05:00
Fix exception when processing nop cmd
This commit is contained in:
parent
f6b94da5fa
commit
6d1d1b520d
1 changed files with 1 additions and 1 deletions
|
@ -339,7 +339,7 @@ class firehose(metaclass=LogBase):
|
|||
def cmd_nop(self):
|
||||
data = "<?xml version=\"1.0\" ?><data><nop /></data>"
|
||||
resp = self.xmlsend(data, True)
|
||||
self.debug(resp.hex())
|
||||
self.debug(resp.data.hex())
|
||||
info = b""
|
||||
tmp = None
|
||||
while tmp != b"":
|
||||
|
|
Loading…
Reference in a new issue