Skip to content

Commit 7f98aa8

Browse files
committed
Updated MeetingFactory to give interim meeting numbers with two-digit zero-padded numbers.
- Legacy-Id: 11423
1 parent b6b855d commit 7f98aa8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/meeting/factories.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def number(self,n):
3434
else:
3535
return '%02d'%(n+80)
3636
else:
37-
return 'interim-%d-%s-%d'%(self.date.year,GroupFactory().acronym,n)
37+
return 'interim-%d-%s-%02d'%(self.date.year,GroupFactory().acronym,n)
3838

3939
@factory.post_generation
4040
def populate_agenda(self, create, extracted, **kwargs):

0 commit comments

Comments
 (0)