# HG changeset patch # User Aurelien Campeas # Date 1233948248 -3600 # Node ID 005f78d21fc7e251d77ae0ffb44b903182bc3538 # Parent 7cfd3d11edc81c324cf576cb12efaf5369aebd3e [selectors] fix inline doc diff -r 7cfd3d11edc8 -r 005f78d21fc7 common/selectors.py --- a/common/selectors.py Fri Feb 06 20:23:26 2009 +0100 +++ b/common/selectors.py Fri Feb 06 20:24:08 2009 +0100 @@ -20,12 +20,12 @@ above by:: # in Python2.5 - from cubicweb.selectors import traced_selection + from cubicweb.common.selectors import traced_selection with traced_selection(): self.view('calendar', myrset) # in Python2.4 - from cubicweb import selectors + from cubicweb.common import selectors selectors.TRACED_OIDS = ('calendar',) self.view('calendar', myrset) selectors.TRACED_OIDS = ()