From 91e8abf8a581b8f21db2e4b4f5de9e89440f61ce Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Sat, 15 Aug 2015 17:31:59 -0400 Subject: [PATCH] DictionaryDb: _repository_dict typo --- gramps/plugins/database/dictionarydb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/plugins/database/dictionarydb.py b/gramps/plugins/database/dictionarydb.py index 34a2b878d..e100bbc82 100644 --- a/gramps/plugins/database/dictionarydb.py +++ b/gramps/plugins/database/dictionarydb.py @@ -677,7 +677,7 @@ class DictionaryDb(DbGeneric): return (key for key in self._place_dict.keys()) def iter_repository_handles(self): - return (key for key in self._repositories_dict.keys()) + return (key for key in self._repository_dict.keys()) def iter_source_handles(self): return (key for key in self._source_dict.keys())