Fixed relationship calculator
svn: r627
This commit is contained in:
parent
0825e74659
commit
298030620b
@ -133,7 +133,6 @@ def loadData(database, filename, callback=None):
|
||||
f.close()
|
||||
except IOError,msg:
|
||||
use_gzip = 0
|
||||
f.close()
|
||||
else:
|
||||
use_gzip = 0
|
||||
|
||||
|
@ -226,9 +226,9 @@ class RelCalc:
|
||||
text = secondName + get_prefix(firstRel-1,"niece") + firstName + "."
|
||||
else:
|
||||
if secondRel > firstRel:
|
||||
text = secondName + cousin(secondRel-1,secondRel-firstRel) + firstName + "."
|
||||
text = secondName + cousin(firstRel-1,secondRel-firstRel) + firstName + "."
|
||||
else:
|
||||
text = secondName + cousin(firstRel-1,firstRel-secondRel) + firstName + "."
|
||||
text = secondName + cousin(secondRel-1,firstRel-secondRel) + firstName + "."
|
||||
|
||||
text1 = self.glade.get_widget("text1")
|
||||
text1.set_point(0)
|
||||
|
Loading…
Reference in New Issue
Block a user