From f6abaa5dba68bf010b847de0c6d37b87e5732eea Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Tue, 21 Apr 2009 14:46:20 +0200 Subject: [PATCH] Fix typo authored_data -> authored_date --- github2/commits.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github2/commits.py b/github2/commits.py index 9907745..cb531ee 100644 --- a/github2/commits.py +++ b/github2/commits.py @@ -8,7 +8,7 @@ class Commit(BaseData): author = Attribute("Author metadata (dict with name/email.)") id = Attribute("Commit ID.") committed_date = DateAttribute("Date committed.", format="commit") - authored_data = DateAttribute("Date authored.", format="commit") + authored_date = DateAttribute("Date authored.", format="commit") tree = Attribute("Tree SHA for this commit.") committer = Attribute("Comitter metadata (dict with name/email.)")