mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-27 11:43:37 +08:00
Fix webconfig URL generation for python3
Closes #1677. Signed-off-by: David Adam <zanchey@ucc.gu.uwa.edu.au>
This commit is contained in:
parent
ea435d35ad
commit
9bfb4f1e11
|
@ -861,7 +861,7 @@ where = os.path.dirname(sys.argv[0])
|
|||
os.chdir(where)
|
||||
|
||||
# Generate a 16-byte random key as a hexadecimal string
|
||||
authkey = binascii.b2a_hex(os.urandom(16))
|
||||
authkey = binascii.b2a_hex(os.urandom(16)).decode('ascii')
|
||||
|
||||
# Try to find a suitable port
|
||||
PORT = 8000
|
||||
|
|
Loading…
Reference in New Issue
Block a user