From 8d33306a2eb6db0b5fbd65c5893b09e472d605f2 Mon Sep 17 00:00:00 2001 From: Peter Landgren Date: Tue, 10 Jun 2008 09:48:33 +0000 Subject: [PATCH] Fixed type in line 2087. too many (. svn: r10799 --- src/GrampsDbUtils/_GrampsBSDDB.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GrampsDbUtils/_GrampsBSDDB.py b/src/GrampsDbUtils/_GrampsBSDDB.py index 3e9c8ae52..6785c4bc5 100644 --- a/src/GrampsDbUtils/_GrampsBSDDB.py +++ b/src/GrampsDbUtils/_GrampsBSDDB.py @@ -2084,7 +2084,7 @@ class GrampsBSDDB(GrampsDbBase, UpdateCallback): if name == 'Note': # Special case: we are way down at the very bottom. # Create note, commit it, return a list with one handle. - if (isinstance(obj, tuple) and (len(obj) > 0) and \ + if isinstance(obj, tuple) and (len(obj) > 0) and \ ('strip' in dir(obj[0])) and (obj[0].strip()): # Some notes may be None, from early databases. (text, format) = obj