From 98aa2b7b79019b1840d677d2738dfa641601d322 Mon Sep 17 00:00:00 2001 From: Gerald Britton Date: Sat, 30 Jan 2010 13:31:16 +0000 Subject: [PATCH] fix bug causing problems with thumbnails and other attributes svn: r14173 --- src/Utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Utils.py b/src/Utils.py index 1e4505cdb..0ab172fa2 100644 --- a/src/Utils.py +++ b/src/Utils.py @@ -908,7 +908,7 @@ def get_referents(handle, db, primary_objects): """ # Use one pass through the reference map to grab all the references - object_list = db.find_backlink_handles(handle) + object_list = list(db.find_backlink_handles(handle)) # Then form the object-specific lists the_lists = ()