From: Jessica Tallon Date: Thu, 20 Nov 2014 10:14:43 +0000 (+0000) Subject: Fix #1039 - Fix typo in user model 'oublished' to 'published' X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=34b755f43d9958688dbe100e2fea1b1107684662;p=mediagoblin.git Fix #1039 - Fix typo in user model 'oublished' to 'published' --- diff --git a/mediagoblin/db/models.py b/mediagoblin/db/models.py index 4e733fa3..2de319d6 100644 --- a/mediagoblin/db/models.py +++ b/mediagoblin/db/models.py @@ -216,7 +216,7 @@ class User(Base, UserMixin): published = UTC.localize(self.created) user = { "id": "acct:{0}@{1}".format(self.username, request.host), - "oublished": published.isoformat(), + "published": published.isoformat(), "preferredUsername": self.username, "displayName": "{0}@{1}".format(self.username, request.host), "objectType": self.object_type,