From af3a35ae30dd15e518dea1b7e0ca2886fd4f2c63 Mon Sep 17 00:00:00 2001 From: Philippe Loctaux Date: Fri, 17 Aug 2018 13:05:15 +0200 Subject: [PATCH] offlineimap/utilis/distro.py: identation fix Fixed a indentation style. Signed-off-by: Philippe Loctaux Signed-off-by: Nicolas Sebrecht --- offlineimap/utils/distro.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/offlineimap/utils/distro.py b/offlineimap/utils/distro.py index 08f0456..87bb2b1 100644 --- a/offlineimap/utils/distro.py +++ b/offlineimap/utils/distro.py @@ -48,7 +48,7 @@ def get_os_name(): if OS.startswith('linux'): DISTRO = platform.linux_distribution()[0] if DISTRO: - OS = OS + "-%s" % DISTRO.split()[0].lower() + OS = OS + "-%s" % DISTRO.split()[0].lower() if os.path.exists('/etc/arch-release'): OS = "linux-arch"