aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2015-02-17 19:42:43 -0600
committerChristopher Allan Webber <cwebber@dustycloud.org>2015-02-17 19:42:43 -0600
commitf3c5d01199ca23b949cbeab99f08a12a2b409803 (patch)
tree0148a287d9d757c273b22e795be743c7feb36d0d
parente0713d9ccf30b69d34fe1f885c710c1615a0d723 (diff)
downloadmediagoblin-f3c5d01199ca23b949cbeab99f08a12a2b409803.tar.lz
mediagoblin-f3c5d01199ca23b949cbeab99f08a12a2b409803.tar.xz
mediagoblin-f3c5d01199ca23b949cbeab99f08a12a2b409803.zip
Fixing typo: notifiction->notification
-rw-r--r--mediagoblin/db/migrations.py2
1 files changed, 1 insertions, 1 deletions
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))