[Zope-CVS] CVS: Products/QueueCatalog - QueueCatalog.py:1.7

Andrew Sawyers andrew@zope.com
Tue, 8 Oct 2002 10:20:55 -0400


Update of /cvs-repository/Products/QueueCatalog
In directory cvs.zope.org:/tmp/cvs-serv13714

Modified Files:
	QueueCatalog.py 
Log Message:
Bug fix line 290 where ob is referenced but object is the argument


=== Products/QueueCatalog/QueueCatalog.py 1.6 => 1.7 ===
--- Products/QueueCatalog/QueueCatalog.py:1.6	Mon Sep 30 10:58:51 2002
+++ Products/QueueCatalog/QueueCatalog.py	Tue Oct  8 10:20:55 2002
@@ -287,7 +287,7 @@
     def unindexObject(self, object):
         """Remove from catalog.
         """
-        url = '/'.join(ob.getPhysicalPath())
+        url = '/'.join(object.getPhysicalPath())
         self.uncatalog_object(url)
 
     security.declarePrivate('reindexObject')