[Erp5-report] r18725 - /erp5/trunk/products/ERP5/Document/PDFDocument.py
nobody at svn.erp5.org
nobody at svn.erp5.org
Wed Jan 16 10:38:54 CET 2008
Author: yusei
Date: Wed Jan 16 10:38:53 2008
New Revision: 18725
URL: http://svn.erp5.org?rev=18725&view=rev
Log:
Prevent KeyError on Zope2.7.
Modified:
erp5/trunk/products/ERP5/Document/PDFDocument.py
Modified: erp5/trunk/products/ERP5/Document/PDFDocument.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/PDFDocument.py?rev=18725&r1=18724&r2=18725&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/PDFDocument.py (original)
+++ erp5/trunk/products/ERP5/Document/PDFDocument.py Wed Jan 16 10:38:53 2008
@@ -189,6 +189,6 @@
def _setFile(self, data, precondition=None):
try:
del self._content_information
- except AttributeError:
+ except (AttributeError, KeyError):
pass
Image._setFile(self, data, precondition)
More information about the Erp5-report
mailing list