From c78ca22a22eef1f77fc47a8dc3ed5dc2929d1ccc Mon Sep 17 00:00:00 2001 From: Phillip Berndt Date: Thu, 16 Dec 2021 09:42:36 +0100 Subject: [PATCH] =?utf8?q?Fix=20Typo:=20ModuleNotFound=20=E2=86=92=20Modul?= =?utf8?q?eNotFoundError?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This fixes a typo introduced in #267 --- autorandr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autorandr.py b/autorandr.py index 1c4ac4a..c9c4f16 100755 --- a/autorandr.py +++ b/autorandr.py @@ -44,7 +44,7 @@ from itertools import chain try: from packaging.version import Version -except ModuleNotFound: +except ModuleNotFoundError: from distutils.version import LooseVersion as Version if sys.version_info.major == 2: -- 2.39.2