[uilib] fix bad argument order, introduced by previous commit
authorSylvain Thénault <sylvain.thenault@logilab.fr>
Mon, 18 Jul 2011 12:13:53 +0200
changeset 7662 3217298823c1
parent 7661 e157174c595c
child 7663 fb2501d29587
[uilib] fix bad argument order, introduced by previous commit
uilib.py
--- a/uilib.py	Mon Jul 18 11:33:44 2011 +0200
+++ b/uilib.py	Mon Jul 18 12:13:53 2011 +0200
@@ -109,7 +109,7 @@
         printer = PRINTERS[attrtype]
     except KeyError:
         return unicode(value)
-    return printer(req, value, props, displaytime)
+    return printer(value, req, props, displaytime)
 
 
 # text publishing #############################################################