From fec68a3fe5e5b0726e17afceef28ec24a49cab73 Mon Sep 17 00:00:00 2001 From: Gordon Shumway <39967334+oddluck@users.noreply.github.com> Date: Thu, 7 Mar 2019 21:07:57 -0500 Subject: [PATCH] Update config.py --- Tweety/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Tweety/config.py b/Tweety/config.py index 0c1e390..647d80d 100644 --- a/Tweety/config.py +++ b/Tweety/config.py @@ -19,6 +19,7 @@ conf.registerGlobalValue(Tweety,'consumerKey',registry.String('', """The consume conf.registerGlobalValue(Tweety,'consumerSecret',registry.String('', """The consumer secret of the application.""", private=True)) conf.registerGlobalValue(Tweety,'accessKey',registry.String('', """The Twitter Access Token key for the bot's account""")) conf.registerGlobalValue(Tweety,'accessSecret',registry.String('', """The Twitter Access Token secret for the bot's account""", private=True)) +conf.registerGlobalValue(Tweety,'bitlyKey',registry.String('', """bit.ly API key for shortening links""", private=True)) conf.registerChannelValue(Tweety,'hideRealName',registry.Boolean(False, """Do not show real name when displaying tweets.""")) conf.registerChannelValue(Tweety,'addShortUrl',registry.Boolean(False, """Whether or not to add a short URL to the tweets.""")) conf.registerChannelValue(Tweety,'woeid',registry.Integer(1, """Where On Earth ID. World Wide is 1. USA is 23424977."""))