From f3c5d01199ca23b949cbeab99f08a12a2b409803 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Tue, 17 Feb 2015 19:42:43 -0600 Subject: [PATCH] Fixing typo: notifiction->notification --- mediagoblin/db/migrations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mediagoblin/db/migrations.py b/mediagoblin/db/migrations.py index 886632de..1ef5f9cb 100644 --- a/mediagoblin/db/migrations.py +++ b/mediagoblin/db/migrations.py @@ -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))