From d6f3d0c86b2e24d19e410004ab4802ab3e7e44f4 Mon Sep 17 00:00:00 2001
From: Jeff Volkenant <jeff@volkenant.net>
Date: Tue, 4 Dec 2018 12:48:59 -0800
Subject: [PATCH] remove extra indent

---
 management/web_update.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/management/web_update.py b/management/web_update.py
index 871e7677..6bfd675f 100644
--- a/management/web_update.py
+++ b/management/web_update.py
@@ -29,11 +29,11 @@ def get_web_domains(env, include_www_redirects=True, exclude_dns_elsewhere=True)
 		# IP address than this box. Remove those domains from our list.
 		domains -= get_domains_with_a_records(env)
 
-		# Add Autoconfiguration domains, allowing us to serve correct SSL certs.
-		# 'autoconfig.' for Mozilla Thunderbird auto setup.
-		# 'autodiscover.' for Activesync autodiscovery.
-		domains |= set('autoconfig.' + zone for zone, zonefile in get_dns_zones(env))
-		domains |= set('autodiscover.' + zone for zone, zonefile in get_dns_zones(env))
+	# Add Autoconfiguration domains, allowing us to serve correct SSL certs.
+	# 'autoconfig.' for Mozilla Thunderbird auto setup.
+	# 'autodiscover.' for Activesync autodiscovery.
+	domains |= set('autoconfig.' + zone for zone, zonefile in get_dns_zones(env))
+	domains |= set('autodiscover.' + zone for zone, zonefile in get_dns_zones(env))
 
 	# Ensure the PRIMARY_HOSTNAME is in the list so we can serve webmail
 	# as well as Z-Push for Exchange ActiveSync. This can't be removed