diff mercurial/match.py @ 19872:681f7b9213a4

check-code: check for spaces around = for named parameters
author Mads Kiilerich <madski@unity3d.com>
date Thu, 03 Oct 2013 14:50:47 +0200
parents facd906caeeb
children f962870712da
line wrap: on
line diff
--- a/mercurial/match.py	Thu Oct 03 14:50:47 2013 +0200
+++ b/mercurial/match.py	Thu Oct 03 14:50:47 2013 +0200
@@ -140,7 +140,7 @@
 
 class exact(match):
     def __init__(self, root, cwd, files):
-        match.__init__(self, root, cwd, files, exact = True)
+        match.__init__(self, root, cwd, files, exact=True)
 
 class always(match):
     def __init__(self, root, cwd):