web/data/cubicweb.python.js
changeset 5727 29afb9e715bb
parent 5658 7b9553a9db65
child 6880 4be32427b2b9
--- a/web/data/cubicweb.python.js	Fri Jun 11 07:58:52 2010 +0200
+++ b/web/data/cubicweb.python.js	Fri Jun 11 07:58:53 2010 +0200
@@ -197,7 +197,7 @@
  */
 function makeUnboundMethod(meth) {
     function unboundMeth(self) {
-        var newargs = sliceList(arguments, 1);
+        var newargs = cw.utils.sliceList(arguments, 1);
         return meth.apply(self, newargs);
     }
     unboundMeth.__name__ = meth.__name__;