diff options
author | Jessica Tallon <jessica@megworld.co.uk> | 2014-11-20 10:14:43 +0000 |
---|---|---|
committer | Jessica Tallon <jessica@megworld.co.uk> | 2014-11-20 10:14:43 +0000 |
commit | 34b755f43d9958688dbe100e2fea1b1107684662 (patch) | |
tree | 0426a2c314892572fa6e446e86811033d202d096 /mediagoblin/db/models.py | |
parent | dd733916633b5bc2588cbe621087551144e70a63 (diff) | |
download | mediagoblin-34b755f43d9958688dbe100e2fea1b1107684662.tar.lz mediagoblin-34b755f43d9958688dbe100e2fea1b1107684662.tar.xz mediagoblin-34b755f43d9958688dbe100e2fea1b1107684662.zip |
Fix #1039 - Fix typo in user model 'oublished' to 'published'
Diffstat (limited to 'mediagoblin/db/models.py')
-rw-r--r-- | mediagoblin/db/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
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, |