summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Pepple <bpepple@fedoraproject.org>2016-05-20 20:01:57 -0400
committerBrian Pepple <bpepple@fedoraproject.org>2016-05-20 20:01:57 -0400
commit10638e02bf7b90440886551a1289dacdd51b5427 (patch)
treef4d8bbfc28a3189c0454dd70f15ba39ea69f4631
parent16a3c146093556710b7d759eeac0ba3e0290019c (diff)
downloadscripts-10638e02bf7b90440886551a1289dacdd51b5427.tar.gz
scripts-10638e02bf7b90440886551a1289dacdd51b5427.tar.xz
scripts-10638e02bf7b90440886551a1289dacdd51b5427.zip
Remove testing print statements
-rwxr-xr-xlast_shout.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/last_shout.py b/last_shout.py
index 722a268..21a614c 100755
--- a/last_shout.py
+++ b/last_shout.py
@@ -193,11 +193,9 @@ def main():
PrintUsageAndExit()
artist = get_top_artist(last_access_key, last_user, number)
txt = build_string(artist)
- print "Total length of tweet: " + str(len(txt))
- print txt
-# send_tweet(consumer_key, consumer_secret,
-# access_key, access_secret,
-# txt, encoding)
+ send_tweet(consumer_key, consumer_secret,
+ access_key, access_secret,
+ txt, encoding)
if __name__ == "__main__":
main()