Skip to content

Commit

Permalink
skip more attributes we never care about
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@22232 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Mar 28, 2019
1 parent bbb6f74 commit 7535e8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/x11/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __init__(self, name):
def __repr__(self):
d = {}
for k,v in self.__dict__.items():
if k=="name":
if k in ("name", "display", "type"):
continue
elif k=="serial":
d[k] = "%#x" % v
Expand Down

0 comments on commit 7535e8b

Please sign in to comment.