diff --git a/easy_my_coop/models/belgian_identification_id_generator.py b/easy_my_coop/models/belgian_identification_id_generator.py index 774320b..6d5f96e 100644 --- a/easy_my_coop/models/belgian_identification_id_generator.py +++ b/easy_my_coop/models/belgian_identification_id_generator.py @@ -31,5 +31,5 @@ def identification_id_to_gender(identification_id): INDENTITY_ID = generate_identification_id(date(1920, 1, 1), date(1995, 12, 31)) GENDER = identification_id_to_gender(INDENTITY_ID) -print 'Rijksregisternummer: ' + INDENTITY_ID -print 'Geslacht: ' + ('Man' if GENDER else 'Vrouw') +print('Rijksregisternummer: ' + INDENTITY_ID) +print('Geslacht: ' + ('Man' if GENDER else 'Vrouw'))