From c5f6355f478a98cccaed46574d8b53baa1cd73ee Mon Sep 17 00:00:00 2001
From: Vincent Pelletier <vincent@nexedi.com>
Date: Tue, 14 Oct 2008 15:13:23 +0000
Subject: [PATCH] Minor coding style cleanup.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@24172 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ZSQLCatalog/SQLCatalog.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/product/ZSQLCatalog/SQLCatalog.py b/product/ZSQLCatalog/SQLCatalog.py
index 469b752899..5db4272ff3 100644
--- a/product/ZSQLCatalog/SQLCatalog.py
+++ b/product/ZSQLCatalog/SQLCatalog.py
@@ -79,9 +79,10 @@ except ImportError:
  
 try:
   from ZPublisher.HTTPRequest import record
-  dict_type_list = (dict, record)
 except ImportError:
   dict_type_list = (dict, )
+else:
+  dict_type_list = (dict, record)
    
      
 UID_BUFFER_SIZE = 300
-- 
2.30.9