From 0a73ecc10eb8611972a8a166d2b978b7c84a594f Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Sun, 23 May 2010 15:45:41 +0000 Subject: [PATCH] use new get_base_db method of db svn: r15466 --- src/Utils.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/Utils.py b/src/Utils.py index bc0fa0ab1..52863438a 100644 --- a/src/Utils.py +++ b/src/Utils.py @@ -818,10 +818,7 @@ def probably_alive(person, db, """ # First, find the real database to use all people # for determining alive status: - from gen.proxy.proxybase import ProxyDbBase - basedb = db - while isinstance(basedb, ProxyDbBase): - basedb = basedb.db + basedb = db.get_base_db() # Now, we create a wrapper for doing work: pb = ProbablyAlive(basedb, max_sib_age_diff, max_age_prob_alive,