diff options
| author | Brian Pepple <bpepple@fedoraproject.org> | 2016-05-20 20:01:57 -0400 |
|---|---|---|
| committer | Brian Pepple <bpepple@fedoraproject.org> | 2016-05-20 20:01:57 -0400 |
| commit | 10638e02bf7b90440886551a1289dacdd51b5427 (patch) | |
| tree | f4d8bbfc28a3189c0454dd70f15ba39ea69f4631 | |
| parent | 16a3c146093556710b7d759eeac0ba3e0290019c (diff) | |
| download | scripts-10638e02bf7b90440886551a1289dacdd51b5427.tar.gz scripts-10638e02bf7b90440886551a1289dacdd51b5427.tar.xz scripts-10638e02bf7b90440886551a1289dacdd51b5427.zip | |
Remove testing print statements
| -rwxr-xr-x | last_shout.py | 8 |
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() |
