diff mercurial/lock.py @ 1062:6d5a62a549fa

pep-0008 cleanup - Don't use spaces around the '=' sign when used to indicate a keyword argument or a default parameter value.
author benoit.boissinot@ens-lyon.fr
date Fri, 26 Aug 2005 13:06:58 +0200
parents 574869103985
children abfab59fce79
line wrap: on
line diff
--- a/mercurial/lock.py	Fri Aug 26 02:03:35 2005 -0700
+++ b/mercurial/lock.py	Fri Aug 26 13:06:58 2005 +0200
@@ -12,7 +12,7 @@
     pass
 
 class lock:
-    def __init__(self, file, wait = 1):
+    def __init__(self, file, wait=1):
         self.f = file
         self.held = 0
         self.wait = wait