2003-07-01 Tim Waugh <twaugh@redhat.com>
* src/EditPerson.py: Don't guess gender if it has already been set. svn: r1808
This commit is contained in:
parent
4fc2cc27cd
commit
56dd6eda7a
@ -1,3 +1,6 @@
|
||||
2003-07-01 Tim Waugh <twaugh@redhat.com>
|
||||
* src/EditPerson.py: Don't guess gender if it has already been set.
|
||||
|
||||
2003-06-30 Tim Waugh <twaugh@redhat.com>
|
||||
* src/plugins/Makefile.am: Ship FanChart.py.
|
||||
* src/plugins/Ancestors.py (generation): Report on the correct
|
||||
|
@ -86,7 +86,9 @@ class EditPerson:
|
||||
self.update_death = 0
|
||||
self.pdmap = {}
|
||||
self.add_places = []
|
||||
self.should_guess_gender = (self.original_id == '')
|
||||
self.should_guess_gender = (self.original_id == '' and
|
||||
person.getGender () ==
|
||||
RelLib.Person.unknown)
|
||||
|
||||
for key in db.getPlaceKeys():
|
||||
p = db.getPlaceDisplay(key)
|
||||
|
Loading…
Reference in New Issue
Block a user