acess_token->access_token

This commit is contained in:
Christopher Allan Webber 2015-02-17 19:44:58 -06:00
parent f3c5d01199
commit d180c131c3

View File

@ -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))