From c59fe9fd71e40ef32395cd5d0f54fd953adda991 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Wed, 11 Jul 2012 14:12:37 +0000 Subject: [PATCH] Missing method for tags svn: r19986 --- src/gen/db/dictionary.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gen/db/dictionary.py b/src/gen/db/dictionary.py index f09ca6b15..89c259a95 100644 --- a/src/gen/db/dictionary.py +++ b/src/gen/db/dictionary.py @@ -584,6 +584,10 @@ class DictionaryDb(DbWriteBase, DbReadBase): media = self.media_map[handle] return media + def get_tag_from_handle(self, handle): + tag = self.tag_map[handle] + return tag + def get_default_person(self): return None