Closed mrecachinas closed 10 years ago
self.created = created, builds a tuple in self.created. This appears to be a mistake. See below for an example:
self.created = created,
self.created
>>> x = 3, >>> x (3,)
self.created = created,
builds a tuple inself.created
. This appears to be a mistake. See below for an example: