Fixing typo: notifiction->notification

This commit is contained in:
Christopher Allan Webber 2015-02-17 19:42:43 -06:00
parent e0713d9ccf
commit f3c5d01199

View File

@ -1220,7 +1220,7 @@ def datetime_to_utc(db):
# Convert Notification
notification_table = inspect_table(metadata, "core__notifications")
for notification in db.execute(notification_table.select()):
db.execute(notifiction_table.update().values(
db.execute(notification_table.update().values(
created=dt_to_utc(notification.created)
).where(notification_table.c.id==notification.id))