Changeset 5976 for main/waeup.sirp/trunk
- Timestamp:
- 25 Apr 2011, 17:03:23 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/image/image.py
r5971 r5976 20 20 ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 21 21 ## 22 import grok 22 """ 23 Components for handling image files. 24 """ 23 25 from hurry.file import HurryFile 26 from zope.interface import implements 24 27 from waeup.sirp.image.interfaces import IImageFile 25 28 … … 29 32 This file type is built upon :class:`hurry.file.HurryFile`. 30 33 """ 31 grok.implements(IImageFile)34 implements(IImageFile)
Note: See TracChangeset for help on using the changeset viewer.