Issue 4460. Fixed by changing =+ to +=.
svn: r16300
This commit is contained in:
parent
4d56e87d11
commit
099f28ad59
@ -292,25 +292,25 @@ class Merge(tool.Tool,ManagedWindow.ManagedWindow):
|
|||||||
birth2.get_date_object())
|
birth2.get_date_object())
|
||||||
if value == -1 :
|
if value == -1 :
|
||||||
return -1
|
return -1
|
||||||
chance =+ value
|
chance += value
|
||||||
|
|
||||||
value = self.date_match(death1.get_date_object(),
|
value = self.date_match(death1.get_date_object(),
|
||||||
death2.get_date_object())
|
death2.get_date_object())
|
||||||
if value == -1 :
|
if value == -1 :
|
||||||
return -1
|
return -1
|
||||||
chance =+ value
|
chance += value
|
||||||
|
|
||||||
value = self.place_match(birth1.get_place_handle(),
|
value = self.place_match(birth1.get_place_handle(),
|
||||||
birth2.get_place_handle())
|
birth2.get_place_handle())
|
||||||
if value == -1 :
|
if value == -1 :
|
||||||
return -1
|
return -1
|
||||||
chance =+ value
|
chance += value
|
||||||
|
|
||||||
value = self.place_match(death1.get_place_handle(),
|
value = self.place_match(death1.get_place_handle(),
|
||||||
death2.get_place_handle())
|
death2.get_place_handle())
|
||||||
if value == -1 :
|
if value == -1 :
|
||||||
return -1
|
return -1
|
||||||
chance =+ value
|
chance += value
|
||||||
|
|
||||||
ancestors = []
|
ancestors = []
|
||||||
self.ancestors_of(p1.get_handle(),ancestors)
|
self.ancestors_of(p1.get_handle(),ancestors)
|
||||||
|
Loading…
Reference in New Issue
Block a user