diff --git a/ChangeLog b/ChangeLog index 9c3f10435..941cf0834 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-01-30 Alex Roitman + * src/RelLib.py: Finish up with actual MALE, FEMALE, and UNKNOWN + attributes of the Person class. + 2005-01-31 Don Allingham * various: Change Person.male, Person.female, and Person.unkwown to Person.MALE, Person.FEMALE and Person.UNKNOWN diff --git a/src/RelLib.py b/src/RelLib.py index 99045f1bf..da58d71b7 100644 --- a/src/RelLib.py +++ b/src/RelLib.py @@ -321,9 +321,9 @@ class Person(PrimaryObject,SourceNote): @sort: serialize, unserialize, get_*, set_*, add_*, remove_* """ - unknown = 2 - male = 1 - female = 0 + UNKNOWN = 2 + MALE = 1 + FEMALE = 0 def __init__(self): """