diff mercurial/cmdutil.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 cdb9493a7e2f
children 07fc2f2134ba
line wrap: on
line diff
--- a/mercurial/cmdutil.py	Mon Jan 04 21:54:46 2016 -0800
+++ b/mercurial/cmdutil.py	Thu Dec 31 08:16:59 2015 +0000
@@ -117,7 +117,7 @@
         diffopts.nodates = True
         diffopts.git = True
         diffopts.showfunc = True
-        originaldiff =  patch.diff(repo, changes=status, opts=diffopts)
+        originaldiff = patch.diff(repo, changes=status, opts=diffopts)
         originalchunks = patch.parsepatch(originaldiff)
 
         # 1. filter patch, so we have intending-to apply subset of it
@@ -2646,7 +2646,7 @@
                                  extra=extra,
                                  editor=editor)
 
-            newdesc =  changelog.stripdesc(new.description())
+            newdesc = changelog.stripdesc(new.description())
             if ((not node)
                 and newdesc == old.description()
                 and user == old.user()
@@ -3200,9 +3200,9 @@
         diffopts = patch.difffeatureopts(repo.ui, whitespace=True)
         diffopts.nodates = True
         diffopts.git = True
-        reversehunks =  repo.ui.configbool('experimental',
-                                           'revertalternateinteractivemode',
-                                           True)
+        reversehunks = repo.ui.configbool('experimental',
+                                          'revertalternateinteractivemode',
+                                          True)
         if reversehunks:
             diff = patch.diff(repo, ctx.node(), None, m, opts=diffopts)
         else: