mirror of
https://github.com/bkerler/edl.git
synced 2025-02-17 12:10:38 -05:00
Merge pull request #365 from viraniac/master
Fix exception when processing nop cmd
This commit is contained in:
commit
15c5506ff4
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