Skip to content

Commit b6fb3dc

Browse files
author
Paul Sokolovsky
committed
webrepl_cli.py: Hide debug message.
1 parent ac942b0 commit b6fb3dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webrepl_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def put_file(ws, local_file, remote_file):
105105
sz = os.stat(local_file)[6]
106106
dest_fname = (SANDBOX + remote_file).encode("utf-8")
107107
rec = struct.pack(WEBREPL_FILE, b"WA", 1, 0, 0, sz, len(dest_fname), dest_fname)
108-
print(rec, len(rec))
108+
debugmsg("%r %d" % (rec, len(rec)))
109109
ws.write(rec[:10])
110110
ws.write(rec[10:])
111111
assert read_resp(ws) == 0

0 commit comments

Comments
 (0)