From 0c2b2ce60ea705ab980cbe43a24a32ce6ea892e9 Mon Sep 17 00:00:00 2001 From: Son NK Date: Wed, 22 Jan 2020 14:08:00 +0100 Subject: [PATCH] fix styling --- app/dashboard/views/custom_alias.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/dashboard/views/custom_alias.py b/app/dashboard/views/custom_alias.py index 6996ded7..984b1cd7 100644 --- a/app/dashboard/views/custom_alias.py +++ b/app/dashboard/views/custom_alias.py @@ -35,7 +35,10 @@ def custom_alias(): # then default domain for domain in ALIAS_DOMAINS: suffixes.append( - (False, ("" if DISABLE_ALIAS_SUFFIX else "." + random_word()) + "@" + domain) + ( + False, + ("" if DISABLE_ALIAS_SUFFIX else "." + random_word()) + "@" + domain, + ) ) if request.method == "POST":