From 6f313d943bb7ce47598b9c61336f3bc34d967966 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Mon, 12 Dec 2016 00:14:22 +0100 Subject: [PATCH] [mod] pep8 --- src/yunohost/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yunohost/user.py b/src/yunohost/user.py index 65cfddae2..08ab4c649 100644 --- a/src/yunohost/user.py +++ b/src/yunohost/user.py @@ -408,7 +408,7 @@ def user_info(auth, username): is_limited = not re.match('0[bkMGT]?', userquota) storage_use = '?' - if (service_status("dovecot")["status"] != "running"): + if service_status("dovecot")["status"] != "running": logger.warning(m18n.n('mailbox_used_space_dovecot_down')) else: cmd = 'doveadm -f flow quota get -u %s' % user['uid'][0]