Fixing typo: notifiction->notification
authorChristopher Allan Webber <cwebber@dustycloud.org>
Wed, 18 Feb 2015 01:42:43 +0000 (19:42 -0600)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Wed, 18 Feb 2015 01:42:43 +0000 (19:42 -0600)
mediagoblin/db/migrations.py

index 886632de06ab72f6157aa9824fac539a8b068604..1ef5f9cb3e19697a09ec0afd85ba00f4165eea1f 100644 (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))