Change how we display the start date to be internationally unambiguous.

This commit is contained in:
David Ormsbee
2012-07-21 20:19:12 -04:00
parent 04d1d0f075
commit f213353613

View File

@@ -39,7 +39,7 @@ class CourseDescriptor(SequenceDescriptor):
@property
def start_date_text(self):
return time.strftime("%m/%d/%y", self.start)
return time.strftime("%b %d, %Y", self.start)
@property
def title(self):