X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=autorandr.py;h=72f48b89059721689e2cf37349176764c5dc17bf;hb=ccfb4f9bafc9685c4c755b744a277107ea814972;hp=85c06d3bcda898f34cb624c1173443ead0920b81;hpb=e0dfa631a21d7d30424a4ba9dde26faeedfcd224;p=deb_pkgs%2Fautorandr.git diff --git a/autorandr.py b/autorandr.py index 85c06d3..72f48b8 100755 --- a/autorandr.py +++ b/autorandr.py @@ -123,7 +123,7 @@ class XrandrOutput(object): "gamma": "1.0:1.0:1.0", } - XRANDR_DEFAULTS = dict(XRANDR_13_DEFAULTS.items() + XRANDR_12_DEFAULTS.items()) + XRANDR_DEFAULTS = dict(list(XRANDR_13_DEFAULTS.items()) + list(XRANDR_12_DEFAULTS.items())) def __repr__(self): return "<%s%s %s>" % (self.output, (" %s..%s" % (self.edid[:5], self.edid[-5:])) if self.edid else "", " ".join(self.option_vector))