Skip to content

Commit

Permalink
avoid showing differences between lists and tuples types
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@22633 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed May 6, 2019
1 parent 8a31b89 commit 5b3fa37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/net/compression.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def get_enabled_compressors(order=ALL_COMPRESSORS):
"brotli" : use_brotli,
}.items() if b)
#order them:
return tuple(x for x in order if x in enabled)
return [x for x in order if x in enabled]

def get_compressor(c):
assert c=="none" or c in ALL_COMPRESSORS
Expand Down

0 comments on commit 5b3fa37

Please sign in to comment.