changeset 28302:e96a3ae025ed

zeroconf: remove whitespace around = for named parameters
author timeless <timeless@mozdev.org>
date Tue, 01 Mar 2016 09:49:38 +0000
parents fd8a4d2d6541
children ce24de063aa5
files hgext/zeroconf/Zeroconf.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/zeroconf/Zeroconf.py	Tue Mar 01 09:44:32 2016 +0000
+++ b/hgext/zeroconf/Zeroconf.py	Tue Mar 01 09:49:38 2016 +0000
@@ -647,7 +647,7 @@
 class DNSOutgoing(object):
     """Object representation of an outgoing packet"""
 
-    def __init__(self, flags, multicast = 1):
+    def __init__(self, flags, multicast=1):
         self.finished = 0
         self.id = 0
         self.multicast = multicast
@@ -1629,7 +1629,7 @@
             out.id = msg.id
             self.send(out, addr, port)
 
-    def send(self, out, addr = _MDNS_ADDR, port = _MDNS_PORT):
+    def send(self, out, addr=_MDNS_ADDR, port=_MDNS_PORT):
         """Sends an outgoing packet."""
         # This is a quick test to see if we can parse the packets we generate
         #temp = DNSIncoming(out.packet())