[Zope3-checkins] CVS: Zope3/src/zope/index/field - index.py:1.2
Anthony Baxter
anthony@interlink.com.au
Mon, 14 Jul 2003 04:32:00 -0400
Update of /cvs-repository/Zope3/src/zope/index/field
In directory cvs.zope.org:/tmp/cvs-serv24485/src/zope/index/field
Modified Files:
index.py
Log Message:
index-geddon, part the third:
zope.index.interfaces.index becomes zope.index.interfaces
(thanks srichter for the pointer)
=== Zope3/src/zope/index/field/index.py 1.1 => 1.2 ===
--- Zope3/src/zope/index/field/index.py:1.1 Sun Jul 13 23:53:33 2003
+++ Zope3/src/zope/index/field/index.py Mon Jul 14 04:31:24 2003
@@ -23,8 +23,8 @@
from types import ListType, TupleType
from zope.interface import implements
-from zope.index.interfaces.index import IInjection, ISimpleQuery
-from zope.index.interfaces.index import IStatistics, IRangeQuerying
+from zope.index.interfaces import IInjection, ISimpleQuery
+from zope.index.interfaces import IStatistics, IRangeQuerying
class FieldIndex(Persistent):