From 9805802d713be09dd36023548c24e359a9fb4a64 Mon Sep 17 00:00:00 2001 From: Philippe Loctaux Date: Fri, 17 Aug 2018 13:16:01 +0200 Subject: [PATCH] Adding comment about manual check for archlinux Added comment with ref to commit about manual check for archlinux, due to the bug in python2. Signed-off-by: Philippe Loctaux --- offlineimap/utils/distro.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/offlineimap/utils/distro.py b/offlineimap/utils/distro.py index 87bb2b1..da9f21c 100644 --- a/offlineimap/utils/distro.py +++ b/offlineimap/utils/distro.py @@ -49,6 +49,8 @@ def get_os_name(): DISTRO = platform.linux_distribution()[0] if DISTRO: OS = OS + "-%s" % DISTRO.split()[0].lower() + # add archlinux manually, for more information + # see commit afb28d87af13a8e91e6115112b361e8ae8ac7167 if os.path.exists('/etc/arch-release'): OS = "linux-arch"