diff hgext/record.py @ 5117:d4fa6bafc43a

Remove trailing spaces, fix indentation
author Thomas Arendsen Hein <thomas@intevation.de>
date Tue, 07 Aug 2007 10:28:43 +0200
parents eca5b31cffc7
children c80af96943aa
line wrap: on
line diff
--- a/hgext/record.py
+++ b/hgext/record.py
@@ -71,7 +71,7 @@ class header(object):
         for h in self.header:
             if h.startswith('index '):
                 return True
-        
+
     def pretty(self, fp):
         for h in self.header:
             if h.startswith('index '):
@@ -213,7 +213,7 @@ def parsepatch(fp):
             'range': {'context': addcontext,
                       'hunk': addhunk},
             }
-             
+
     p = parser()
 
     state = 'context'
@@ -311,7 +311,7 @@ def record(ui, repo, *pats, **opts):
         for h in chunks:
             try: contenders.update(dict.fromkeys(h.files()))
             except AttributeError: pass
-            
+
         newfiles = [f for f in files if f in contenders]
 
         if not newfiles: