From a7a70d048aff2c9818c444b2381cebf280729ce2 Mon Sep 17 00:00:00 2001 From: Klaus-Uwe Mitterer Date: Mon, 27 Feb 2017 00:58:01 +0100 Subject: [PATCH] Fix stupid copy/paste error --- filler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filler.py b/filler.py index b0473b0..b378015 100755 --- a/filler.py +++ b/filler.py @@ -61,7 +61,7 @@ def getMessages(db=dbtools.dbHelper(), two=twitools.twObject()): if 'media' in m.entities: mid = 0 for med in m.entities['media']: - downloadMedia(med['media_url'], status.id, mid) + downloadMedia(med['media_url'], m.id, mid) mid += 1 db.commit()