diff options
-rw-r--r-- | mediagoblin/db/migrations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/db/migrations.py b/mediagoblin/db/migrations.py index 1ef5f9cb..8e54953e 100644 --- a/mediagoblin/db/migrations.py +++ b/mediagoblin/db/migrations.py @@ -1171,7 +1171,7 @@ def datetime_to_utc(db): at_table = inspect_table(metadata, "core__access_tokens") for access_token in db.execute(at_table.select()): db.execute(at_table.update().values( - created=dt_to_utc(acess_token.created), + created=dt_to_utc(access_token.created), updated=dt_to_utc(access_token.updated) ).where(at_table.c.id==access_token.id)) |