Skip to content

Commit

Permalink
'endpoint' element may not be a string yet, convert it
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@24944 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Jan 13, 2020
1 parent 337b503 commit e298936
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/client/mixins/tray.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,6 @@ def get_tray_title(self):
t.append(cinfo.get("endpoint", bytestostr(conn.target)))
if not t:
t.insert(0, "Xpra")
v = "\n".join(t)
v = "\n".join(str(x) for x in t)
log("get_tray_title()=%s (items=%s)", nonl(v), tuple(strtobytes(x) for x in t))
return v

0 comments on commit e298936

Please sign in to comment.