From f6a5323f865e76c961e4822d4eacc573a5244317 Mon Sep 17 00:00:00 2001 From: Phillip Berndt Date: Mon, 26 Jan 2015 07:45:48 +0100 Subject: [PATCH] Python version: Fix detection of already loaded old setups with md5sum'ed EDID --- autorandr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.39.5