Commit 6ffe133e authored by Chris McDonough's avatar Chris McDonough

Stringify the object in the exception in case its a list or tuple (an...

Stringify the object in the exception in case its a list or tuple (an inscrutable error occurs if this is not done).
parent 18735ab3
......@@ -383,7 +383,7 @@ class Catalog(Persistent, Acquisition.Implicit, ExtensionClass.Base):
else:
LOG('Catalog', ERROR, ('uncatalogObject unsuccessfully '
'attempted to uncatalog an object '
'with a uid of %s. ' % uid))
'with a uid of %s. ' % str(uid)))
def uniqueValuesFor(self, name):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment