Skip to content

Commit

Permalink
#1646 python3 strings byte us again
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@19944 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Jul 21, 2018
1 parent b70106c commit 229f6c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/scripts/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1014,7 +1014,7 @@ def ssh_target_string(display_desc):

def keymd5(k):
import binascii
f = binascii.hexlify(k.get_fingerprint())
f = bytestostr(binascii.hexlify(k.get_fingerprint()))
s = "MD5"
while f:
s += ":"+f[:2]
Expand Down

0 comments on commit 229f6c0

Please sign in to comment.