[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/content - i18nfile.py:1.1.2.2
Fred L. Drake, Jr.
fred@zope.com
Tue, 24 Dec 2002 11:19:04 -0500
Update of /cvs-repository/Zope3/src/zope/app/interfaces/content
In directory cvs.zope.org:/tmp/cvs-serv3169
Modified Files:
Tag: NameGeddon-branch
i18nfile.py
Log Message:
- fix broken module reference
- normalize whitespace
=== Zope3/src/zope/app/interfaces/content/i18nfile.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/app/interfaces/content/i18nfile.py:1.1.2.1 Tue Dec 24 08:41:14 2002
+++ Zope3/src/zope/app/interfaces/content/i18nfile.py Tue Dec 24 11:19:03 2002
@@ -2,14 +2,14 @@
#
# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
# All Rights Reserved.
-#
+#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
-#
+#
##############################################################################
"""
@@ -17,6 +17,7 @@
"""
import persistence
+
from zope.app.interfaces.content.file import IFile
from zope.interfaces.i18n import II18nAware
from zope.app.content.file import File
@@ -30,7 +31,7 @@
'''Remove translated content for a given language.'''
-class I18nFile(Persistence.Persistent):
+class I18nFile(persistence.Persistent):
"""I18n aware file object. It contains a number of File objects --
one for each language.
"""
@@ -164,5 +165,3 @@
if self._data.has_key(language):
del self._data[language]
self._p_changed = 1
-
-