mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 23:47:25 +00: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
482e615fe0
commit
7f4908b0db
1 changed files with 1 additions and 1 deletions
|
@ -654,7 +654,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 a new issue