##// END OF EJS Templates
fix format of LazyEvaluate based on *actual* review
MinRK -
Show More
@@ -104,7 +104,7 b' class LazyEvaluate(object):'
104 return unicode(self())
104 return unicode(self())
105
105
106 def __format__(self, format_spec):
106 def __format__(self, format_spec):
107 return format(unicode(self()), format_spec)
107 return format(self(), format_spec)
108
108
109 def multiple_replace(dict, text):
109 def multiple_replace(dict, text):
110 """ Replace in 'text' all occurences of any key in the given
110 """ Replace in 'text' all occurences of any key in the given
General Comments 0
You need to be logged in to leave comments. Login now