We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14ec4eb commit ccec1b7Copy full SHA for ccec1b7
loremricksum.py
@@ -20,11 +20,12 @@ def getQuote():
20
21
def tweetQuote():
22
msg = getQuote()
23
- api.update_status(msg)
+ tweet_status = "%s #RickAndMorty" % (msg)
24
+ api.update_status(tweet_status)
25
26
def tweetReply(username, status_id):
27
reply = getQuote()
- reply_status = "@%s %s" % (username, reply)
28
+ reply_status = "@%s %s #RickAndMorty" % (username, reply)
29
api.update_status(status = reply_status, in_reply_to_status_id = status_id)
30
31
def favorite(status_id):
0 commit comments