[Zope3-checkins] CVS: Zope3/src/zope/publisher/interfaces - browser.py:1.1.2.2 http.py:1.1.2.2
Jim Fulton
jim@zope.com
Mon, 23 Dec 2002 15:49:26 -0500
Update of /cvs-repository/Zope3/src/zope/publisher/interfaces
In directory cvs.zope.org:/tmp/cvs-serv5010/publisher/interfaces
Modified Files:
Tag: NameGeddon-branch
browser.py http.py
Log Message:
corrected interface Attribute imports
=== Zope3/src/zope/publisher/interfaces/browser.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/publisher/interfaces/browser.py:1.1.2.1 Mon Dec 23 14:33:10 2002
+++ Zope3/src/zope/publisher/interfaces/browser.py Mon Dec 23 15:49:25 2002
@@ -18,7 +18,7 @@
"""
from zope.publisher.interfaces.http import IHTTPApplicationRequest
-from zope.interface.element import Attribute
+from zope.interface import Attribute
class IBrowserApplicationRequest(IHTTPApplicationRequest):
"""Browser-specific requests
=== Zope3/src/zope/publisher/interfaces/http.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/publisher/interfaces/http.py:1.1.2.1 Mon Dec 23 14:33:10 2002
+++ Zope3/src/zope/publisher/interfaces/http.py Mon Dec 23 15:49:25 2002
@@ -18,7 +18,7 @@
"""
from zope.interfaces.publisher import IApplicationRequest
-from zope.interface.element import Attribute
+from zope.interface import Attribute
class IHTTPApplicationRequest(IApplicationRequest):
"""HTTP request data.
@@ -199,7 +199,7 @@
"""
from zope.interfaces.publisher import IApplicationResponse
-from zope.interface.element import Attribute
+from zope.interface import Attribute
class IHTTPApplicationResponse(IApplicationResponse):