# HG changeset patch
# User Sylvain Thénault <sylvain.thenault@logilab.fr>
# Date 1317918181 -7200
# Node ID d59db60687313d94170feeb3cc5dc7cca9f14064
# Parent  fb757a7d887e3a6b14ca2a68df56c558272f4857
remove 3.14 deprecation warning

diff -r fb757a7d887e -r d59db6068731 web/views/baseviews.py
--- a/web/views/baseviews.py	Thu Oct 06 16:14:08 2011 +0200
+++ b/web/views/baseviews.py	Thu Oct 06 18:23:01 2011 +0200
@@ -89,7 +89,7 @@
 from cubicweb.selectors import yes, empty_rset, one_etype_rset, match_kwargs
 from cubicweb.schema import display_name
 from cubicweb.view import EntityView, AnyRsetView, View
-from cubicweb.uilib import cut, printable_value
+from cubicweb.uilib import cut
 from cubicweb.web.views import calendar
 
 
@@ -161,7 +161,7 @@
                 # about string format & all
                 self.w(entity.printable_value(rtype, value, format=format))
                 return
-        value = printable_value(self._cw, etype, value, props)
+        value = self._cw.printable_value(etype, value, props)
         if etype in ('Time', 'Interval'):
             value = value.replace(' ', '&#160;')
         self.wdata(value)