Skip to content

Commit

Permalink
#3978 minor fixes for Cython
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Aug 28, 2023
1 parent 517f7a8 commit d159768
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions xpra/os_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ def nn(x):
continue
#sanitize stack to prevent None values (which cause encoding errors with the bencoder)
sanestack = []
for e in stack:
sanestack.append(tuple(nn(x) for x in e))
for entry in stack:
sanestack.append(tuple(nn(x) for x in entry))
info[i] = {
"" : tident,
"stack" : sanestack,
Expand Down
1 change: 0 additions & 1 deletion xpra/scripts/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -1525,7 +1525,6 @@ def server_not_started(msg="server not started"):
######################################################################
if opts.attach is True:
attach_client(opts, defaults)
del opts

try:
progress(100, "running")
Expand Down

0 comments on commit d159768

Please sign in to comment.