bug fix for displaying quotas

This commit is contained in:
John Supplee 2019-01-28 16:34:34 +02:00
parent 3cd14bd4b8
commit 587f33b6c0
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ def get_mail_users_ex(env, with_archived=False):
active_accounts = set()
c = open_database(env)
c.execute('SELECT email, privileges, quota FROM users')
for email, privileges in c.fetchall():
for email, privileges, quota in c.fetchall():
active_accounts.add(email)
user = {