Skip to content

Commit

Permalink
Stringify the object in the exception in case its a list or tuple (an…
Browse files Browse the repository at this point in the history
… inscrutable error occurs if this is not done).
  • Loading branch information
mcdonc committed Nov 25, 2002
1 parent 3ef012d commit feef055
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ def uncatalogObject(self, uid):
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):
Expand Down

0 comments on commit feef055

Please sign in to comment.