# HG changeset patch # User Boris Feld # Date 2017-10-09 09:45:21 # Node ID 31451f3f4b5697332183cc8929f69b27791e40cf # Parent ab11af15a149c6cb9ef10f6ecff719a70b040457 style: remove multiple statement on a single line in zeroconf Differential Revision: https://phab.mercurial-scm.org/D1833 diff --git a/hgext/zeroconf/Zeroconf.py b/hgext/zeroconf/Zeroconf.py --- a/hgext/zeroconf/Zeroconf.py +++ b/hgext/zeroconf/Zeroconf.py @@ -1613,7 +1613,8 @@ class Zeroconf(object): _DNS_TTL, service.address)) service = self.services.get(question.name.lower(), None) - if not service: continue + if not service: + continue if (question.type == _TYPE_SRV or question.type == _TYPE_ANY):