From f354836afd52ef9943fe3da13a986a953b750a70 Mon Sep 17 00:00:00 2001
From: Jean-Paul Smets <jp@nexedi.com>
Date: Thu, 11 Dec 2003 09:21:43 +0000
Subject: [PATCH] returns dict

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

diff --git a/product/ERP5/Extensions/Inspect.py b/product/ERP5/Extensions/Inspect.py
index ff4c8e3c66..ea8806fa66 100755
--- a/product/ERP5/Extensions/Inspect.py
+++ b/product/ERP5/Extensions/Inspect.py
@@ -1,6 +1,7 @@
 # Simple Object Inspector
 
 def inspect(self):
+  return str(self.__dict__)	
   #return "type: %s dict:%s" % (type(o), o.__dict__)
   result = ''
   return self.getPhysicalPath()
-- 
2.30.9