Browse Source

pythonic style fix:
- Don't use spaces around the '=' sign when used to indicate a
keyword argument or a default parameter value.


git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@2070 e5f2f494-b856-4b98-b285-d166d9295462

JINMEI Tatuya 15 years ago
parent
commit
e4c31a796e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/bin/xfrin/xfrin.py.in

+ 1 - 1
src/bin/xfrin/xfrin.py.in

@@ -135,7 +135,7 @@ class XfrinConnection(asyncore.dispatcher):
         This method is a trivial wrapper for asyncore.loop().  It's extracted from
         _get_request_response so that we can test the rest of the code without
         involving actual communication with a remote server.'''
-        asyncore.loop(self._idle_timeout, map = self._sock_map, count = 1)
+        asyncore.loop(self._idle_timeout, map=self._sock_map, count=1)
     
     def _get_request_response(self, size):
         recv_size = 0