Indent the else to the same level as its if.

This commit is contained in:
JohnHay 2021-12-20 08:55:38 +02:00
parent f65a51bbee
commit 7c1f2b08cf

View File

@ -210,8 +210,8 @@ class Method(BaseMethod):
reverse=True):
if sexclude:
ipfw('table', '125', 'add', '%s/%s' % (snet, swidth))
else:
ipfw('table', '126', 'add', '%s/%s' % (snet, swidth))
else:
ipfw('table', '126', 'add', '%s/%s' % (snet, swidth))
def restore_firewall(self, port, family, udp, user):
if family not in [socket.AF_INET]: