[selectors] fix inline doc
authorAurelien Campeas <aurelien.campeas@logilab.fr>
Fri, 06 Feb 2009 20:24:08 +0100
changeset 560 005f78d21fc7
parent 559 7cfd3d11edc8
child 561 4bbeb62ba955
[selectors] fix inline doc
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 = ()