style: remove multiple statement on a single line in zeroconf
authorBoris Feld <boris.feld@octobus.net>
Mon, 09 Oct 2017 11:45:21 +0200
changeset 35629 31451f3f4b56
parent 35628 ab11af15a149
child 35630 6061e54ff81d
style: remove multiple statement on a single line in zeroconf Differential Revision: https://phab.mercurial-scm.org/D1833
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):