Skip to content

Commit ccec1b7

Browse files
author
belldavidr
committed
added #RickAndMorty to tweets and replies
1 parent 14ec4eb commit ccec1b7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

loremricksum.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,12 @@ def getQuote():
2020

2121
def tweetQuote():
2222
msg = getQuote()
23-
api.update_status(msg)
23+
tweet_status = "%s #RickAndMorty" % (msg)
24+
api.update_status(tweet_status)
2425

2526
def tweetReply(username, status_id):
2627
reply = getQuote()
27-
reply_status = "@%s %s" % (username, reply)
28+
reply_status = "@%s %s #RickAndMorty" % (username, reply)
2829
api.update_status(status = reply_status, in_reply_to_status_id = status_id)
2930

3031
def favorite(status_id):

0 commit comments

Comments
 (0)