From c6ce98c899bfc0a26abfdb0b49762afe471e6305 Mon Sep 17 00:00:00 2001 From: Eero Tamminen Date: Thu, 7 Apr 2005 20:06:39 +0000 Subject: [PATCH] better variable name svn: r4320 --- src/plugins/StatisticsChart.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/StatisticsChart.py b/src/plugins/StatisticsChart.py index 7354ed841..15add765d 100755 --- a/src/plugins/StatisticsChart.py +++ b/src/plugins/StatisticsChart.py @@ -226,8 +226,8 @@ class Extract: def get_person_age(self, person): "return age for given person, if alive" - death = person.get_death_handle() - if not death: + death_handle = person.get_death_handle() + if not death_handle: return [self.estimate_age(person)] return [_("Already dead")]