From 4c3a621b6dd58a237e9d2d98b1a1bfee978878b6 Mon Sep 17 00:00:00 2001 From: Jessica Tallon Date: Mon, 29 Feb 2016 18:17:42 +0000 Subject: [PATCH] Fix a typo in consolidate_reports migration --- 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 78ef4832..257da6ee 100644 --- a/mediagoblin/db/migrations.py +++ b/mediagoblin/db/migrations.py @@ -2042,7 +2042,7 @@ def consolidate_reports(db): # Iterate through the Media Reports and do the save as above. for media_report in db.execute(media_report_table.select()): # If the media report is None then it's been deleted nd we should skip - if media_report.media_entry_is is None: + if media_report.media_entry_id is None: continue # Find Mr. GMR :) -- 2.25.1