From f917689e2fd84db6095de30b65db15de96e6745a Mon Sep 17 00:00:00 2001
From: Kazuhiko Shiozaki <kazuhiko@nexedi.com>
Date: Thu, 13 Aug 2009 18:51:55 +0000
Subject: [PATCH] fix a typo introduced in r28370.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@28372 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ERP5/Document/Document.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/product/ERP5/Document/Document.py b/product/ERP5/Document/Document.py
index 5770a1b709..2470558a87 100644
--- a/product/ERP5/Document/Document.py
+++ b/product/ERP5/Document/Document.py
@@ -186,7 +186,7 @@ class ConversionCacheMixin:
     if self.isTempObject():
       if getattr(aq_base(self), 'temp_conversion_data', None) is None:
         self.temp_conversion_data = {}
-      self.temp_conversion_cache[cache_id] = (mime, aq_base(data))
+      self.temp_conversion_data[cache_id] = (mime, aq_base(data))
       return
     cache_factory = self._getCacheFactory()
     cache_duration = cache_factory.cache_duration
-- 
2.30.9