Skip to content

Commit

Permalink
better error logging format
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@18788 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Mar 21, 2018
1 parent 4769be2 commit 4236bad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/client/client_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ def process_challenge_gss(self, packet):
try:
#split on colon
for x in str(e).split(":", 2):
authlog.error(" %s", x)
authlog.error(" %s", x.lstrip(" "))
except:
authlog.error(" %s", e)
return False
Expand Down

0 comments on commit 4236bad

Please sign in to comment.