Merge branch 'master' of github.com:aarongut/cmdasana

This commit is contained in:
2018-07-01 14:49:47 -07:00
4 changed files with 13 additions and 1 deletions

View File

@@ -211,6 +211,12 @@ class Story(AsanaObject):
else:
return ''
def created_at(self):
if 'created_at' in self.object_dict:
return dateutil.parser.parse(self.object_dict['created_at'])
else:
return ''
def text(self):
if 'html_text' in self.object_dict:
parser = HTMLTextParser()