# HG changeset patch # User Boris Feld # Date 1507542321 -7200 # Node ID 31451f3f4b5697332183cc8929f69b27791e40cf # Parent ab11af15a149c6cb9ef10f6ecff719a70b040457 style: remove multiple statement on a single line in zeroconf Differential Revision: https://phab.mercurial-scm.org/D1833 diff -r ab11af15a149 -r 31451f3f4b56 hgext/zeroconf/Zeroconf.py --- a/hgext/zeroconf/Zeroconf.py Mon Oct 09 11:44:02 2017 +0200 +++ b/hgext/zeroconf/Zeroconf.py Mon Oct 09 11:45:21 2017 +0200 @@ -1613,7 +1613,8 @@ _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):