From 9e9eedef9534e15573f4c6c45d75a690ee51ce30 Mon Sep 17 00:00:00 2001 From: Helmut Merz Date: Wed, 26 Dec 2012 10:55:19 +0100 Subject: [PATCH 1/3] change PIL import in order to avoid name clash with ImageFile.py from Zope installation --- docgen/mht.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docgen/mht.py b/docgen/mht.py index 1242973..daf63c3 100644 --- a/docgen/mht.py +++ b/docgen/mht.py @@ -23,7 +23,7 @@ Working with MHT Files. import base64 from cStringIO import StringIO import email -import Image +from PIL import Image import mimetypes import os From 552edab800984d88b844c53f49368cd22dfb00b0 Mon Sep 17 00:00:00 2001 From: Helmut Merz Date: Thu, 3 Jan 2013 19:39:39 +0100 Subject: [PATCH 2/3] formal fixes --- composer/schema/interfaces.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer/schema/interfaces.py b/composer/schema/interfaces.py index 9e3f809..79f2bf9 100644 --- a/composer/schema/interfaces.py +++ b/composer/schema/interfaces.py @@ -1,5 +1,5 @@ # -# Copyright (c) 2011 Helmut Merz helmutm@cy55.de +# Copyright (c) 2013 Helmut Merz helmutm@cy55.de # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -366,3 +366,4 @@ class IFormManager(IClientManager): description=_(u'Email address that will be used as sender ' 'address of confirmation and feedback messages.'), required=False,) + From 6f5dd49764cfaec3e6ab3725c62062b78ac1cd63 Mon Sep 17 00:00:00 2001 From: Helmut Merz Date: Tue, 8 Jan 2013 12:14:44 +0100 Subject: [PATCH 3/3] update header info of source file --- stateful/definition.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/stateful/definition.py b/stateful/definition.py index 8afb82c..1c3d8c6 100644 --- a/stateful/definition.py +++ b/stateful/definition.py @@ -1,5 +1,5 @@ # -# Copyright (c) 2007 Helmut Merz helmutm@cy55.de +# Copyright (c) 2013 Helmut Merz helmutm@cy55.de # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -18,8 +18,6 @@ """ State definition implementation. - -$Id$ """ from zope.interface import implements