# HG changeset patch # User sylvain.thenault@logilab.fr # Date 1241434408 -7200 # Node ID f5f6f25c2602af64c98f263fd27896103d632470 # Parent 66f62f8ef8d8255c4a2c7830d621712ddcce1868 fix import diff -r 66f62f8ef8d8 -r f5f6f25c2602 appobject.py --- a/appobject.py Mon May 04 11:57:08 2009 +0200 +++ b/appobject.py Mon May 04 12:53:28 2009 +0200 @@ -255,7 +255,7 @@ """render a precompiled page template with variables in the given dictionary as context """ - from cubicweb.common.tal import CubicWebContext + from cubicweb.ext.tal import CubicWebContext context = CubicWebContext() context.update({'self': self, 'rset': self.rset, '_' : self.req._, 'req': self.req, 'user': self.req.user})