From 714cbe2327328bdb3e308b76861ba5e1c0d1022e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolfo=20Garc=C3=ADa=20Pe=C3=B1as=20=28kix=29?= Date: Sun, 25 Oct 2020 16:40:07 +0100 Subject: [PATCH] Renamed OS to os_name in get_os_sslcertificate_searchpath This patch changes this variable name only. --- offlineimap/utils/distro_utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/offlineimap/utils/distro_utils.py b/offlineimap/utils/distro_utils.py index 4a26da7..79fdece 100644 --- a/offlineimap/utils/distro_utils.py +++ b/offlineimap/utils/distro_utils.py @@ -71,11 +71,11 @@ def get_os_sslcertfile_searchpath(): at all. """ - OS = get_os_name() + os_name = get_os_name() l = None - if OS in __DEF_OS_LOCATIONS: - l = __DEF_OS_LOCATIONS[OS] + if os_name in __DEF_OS_LOCATIONS: + l = __DEF_OS_LOCATIONS[os_name] if not hasattr(l, '__iter__'): l = (l,) return l