wsdump.py writes empty string to console
This commit is contained in:
@@ -121,7 +121,7 @@ def main():
|
|||||||
elif args.verbose:
|
elif args.verbose:
|
||||||
msg = "< %s: %s" % (websocket.ABNF.OPCODE_MAP.get(opcode), data)
|
msg = "< %s: %s" % (websocket.ABNF.OPCODE_MAP.get(opcode), data)
|
||||||
|
|
||||||
if msg:
|
if msg is not None:
|
||||||
console.write(msg)
|
console.write(msg)
|
||||||
|
|
||||||
if opcode == websocket.ABNF.OPCODE_CLOSE:
|
if opcode == websocket.ABNF.OPCODE_CLOSE:
|
||||||
|
Reference in New Issue
Block a user