]> git.donarmstrong.com Git - deb_pkgs/autorandr.git/blobdiff - autorandr.py
Fix matching EDIDs with wildcards
[deb_pkgs/autorandr.git] / autorandr.py
index 1f44c2821e40e73ea6f47c347441c9b3ca85307b..db835fb8311796ca4482cfdf2299767a5dcb58ac 100755 (executable)
@@ -50,7 +50,7 @@ if sys.version_info.major == 2:
 else:
     import configparser
 
-__version__ = "1.13"
+__version__ = "1.13.1"
 
 try:
     input = raw_input
@@ -359,6 +359,8 @@ class XrandrOutput(object):
         if self.edid:
             if self.EDID_UNAVAILABLE in self.edid:
                 return
+            if "*" in self.edid:
+                return
             # Thx to pyedid project, the following code was
             # copied (and modified) from pyedid/__init__py:21 [parse_edid()]
             raw = bytes.fromhex(self.edid)