diff tests/tinyproxy.py @ 27637:b502138f5faa

cleanup: remove superfluous space after space after equals (python)
author timeless <timeless@mozdev.org>
date Thu, 31 Dec 2015 08:16:59 +0000
parents faca4adfed0a
children f452c1cf7a8f
line wrap: on
line diff
--- a/tests/tinyproxy.py	Mon Jan 04 21:54:46 2016 -0800
+++ b/tests/tinyproxy.py	Thu Dec 31 08:16:59 2015 +0000
@@ -29,7 +29,7 @@
     rbufsize = 0                        # self.rfile Be unbuffered
 
     def handle(self):
-        (ip, port) =  self.client_address
+        (ip, port) = self.client_address
         allowed = getattr(self, 'allowed_clients', None)
         if allowed is not None and ip not in allowed:
             self.raw_requestline = self.rfile.readline()