offlineimap/utilis/distro.py: identation fix

Fixed a indentation style.

Signed-off-by: Philippe Loctaux <loctauxphilippe@gmail.com>
Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
Philippe Loctaux 2018-08-17 13:05:15 +02:00 committed by Nicolas Sebrecht
parent 761e10e8b1
commit af3a35ae30
1 changed files with 1 additions and 1 deletions

View File

@ -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"