diff mercurial/templater.py @ 10339:23e608f42f2c

fix spaces/identation issues
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Fri, 05 Feb 2010 18:50:08 +0100
parents 08a0f04b56bd
children b91c1804008e
line wrap: on
line diff
--- a/mercurial/templater.py	Wed Feb 03 16:09:19 2010 +0000
+++ b/mercurial/templater.py	Fri Feb 05 18:50:08 2010 +0100
@@ -95,10 +95,10 @@
             except KeyError, i:
                 raise SyntaxError(_("unknown filter '%s'") % i[0])
             def apply(get):
-                    x = get(val)
-                    for f in filters:
-                        x = f(x)
-                    return x
+                x = get(val)
+                for f in filters:
+                    x = f(x)
+                return x
             self.cache[expr] = apply
         return self.cache[expr](get)