Fixed a type issue with [14556]

- Legacy-Id: 14559
Note: SVN reference [14556] has been migrated to Git commit a438ff85e8
This commit is contained in:
Henrik Levkowetz 2018-01-23 22:27:49 +00:00
parent 261ebbf44e
commit ccec044511

View file

@ -47,8 +47,9 @@ class MeetingFactory(factory.DjangoModelFactory):
@factory.lazy_attribute
def date(self):
if self.type_id == 'ietf':
year = (self.number-2)//3+1985
month = ((self.number-2)%3+1)*4-1
num = int(self.number)
year = (num-2)//3+1985
month = ((num-2)%3+1)*4-1
day = random.randint(1,28)
return datetime.date(year, month, day)
else: