From c73a3b5798cafd6edd9ba119dae05689bae02a20 Mon Sep 17 00:00:00 2001 From: willampatton Date: Sat, 6 Aug 2016 16:52:38 +0100 Subject: [PATCH] fix a typo where it referenced the retweet function --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index a84191f..237792f 100755 --- a/bot.py +++ b/bot.py @@ -122,7 +122,7 @@ def runner(dbconfig, waitTime): ## send the tweet or retweet if tweettype == 'retweet' : - twitter.functions.sendretweet(authenticated_api, tweetcontent) + twitterfunctions.sendretweet(authenticated_api, tweetcontent) elif tweettype == 'tweet' : twitterfunctions.sendtweet(authenticated_api, tweetcontent)