Skip to content

Commit a8e594d

Browse files
committed
Fix bytes in flag.py
1 parent 1b6e663 commit a8e594d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pwnlib/flag/flag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def submit_flag(flag,
5050
>>> _ = submit_flag('flag', server='localhost', port=l.lport)
5151
>>> c = l.wait_for_connection()
5252
>>> c.recvall().split()
53-
['flag', 'unnamed-exploit', 'unknown-target', 'unknown-team']
53+
[b'flag', b'unnamed-exploit', b'unknown-target', b'unknown-team']
5454
"""
5555
flag = flag.strip()
5656

0 commit comments

Comments
 (0)