From: Phillip Berndt Date: Mon, 26 Jan 2015 06:45:48 +0000 (+0100) Subject: Python version: Fix detection of already loaded old setups with md5sum'ed EDID X-Git-Tag: 1.0~90 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f6a5323f865e76c961e4822d4eacc573a5244317;p=deb_pkgs%2Fautorandr.git Python version: Fix detection of already loaded old setups with md5sum'ed EDID --- diff --git a/autorandr.py b/autorandr.py index f517655..8fc597d 100755 --- a/autorandr.py +++ b/autorandr.py @@ -284,7 +284,7 @@ class XrandrOutput(object): return self.edid == other.edid def __eq__(self, other): - return self.edid == other.edid and self.output == other.output and self.options == other.options + return self.edid_equals(other) and self.output == other.output and self.options == other.options def xrandr_version(): "Return the version of XRandR that this system uses"