From f1667a27200d63b1c672586017318fd319a7985e Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Tue, 21 Apr 2009 14:45:49 +0200 Subject: [PATCH] Fix typo messsage -> message --- github2/commits.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github2/commits.py b/github2/commits.py index a5a9739..9907745 100644 --- a/github2/commits.py +++ b/github2/commits.py @@ -2,7 +2,7 @@ from github2.core import BaseData, GithubCommand, Attribute, DateAttribute class Commit(BaseData): - messsage = Attribute("Commit message.") + message = Attribute("Commit message.") parents = Attribute("List of parents for this commit.") url = Attribute("Canonical URL for this commit.") author = Attribute("Author metadata (dict with name/email.)")