From f19f04c415d72ebffe31eeb0ed83dd51c46089c5 Mon Sep 17 00:00:00 2001 From: Klaus-Uwe Mitterer Date: Mon, 1 Aug 2016 22:07:00 +0200 Subject: [PATCH] Nobody cares about the tweet IDs. --- filler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/filler.py b/filler.py index 146b5ec..8b9f980 100755 --- a/filler.py +++ b/filler.py @@ -102,9 +102,9 @@ def getFollowing(db=dbtools.dbHelper(), two=twitools.twObject()): if __name__ == "__main__": count, last, first = getTweets() - print("Stored %i tweets after %i until %i." % (count, first, last)) + print("Stored %i tweets." % (count, first, last)) count, last, first = getMessages() - print("Stored %i messages after %i until %i." % (count, first, last)) + print("Stored %i messages." % (count, first, last)) gained, lost = getFollowers() print("Gained %i followers, lost %i." % (gained, lost)) gained, lost = getFollowing()