mirror of
https://git.wownero.com/wownero/tippero.git
synced 2024-08-15 00:33:14 +00:00
twitter: fix update_status for tweepy API change
This commit is contained in:
parent
37b663bcfe
commit
38afd5000b
1 changed files with 1 additions and 1 deletions
|
@ -192,7 +192,7 @@ class TwitterNetwork(Network):
|
|||
try:
|
||||
if mtype == 'g':
|
||||
log_info('call: update_status(%s,%s)' % (str(text),str(data)))
|
||||
self.twitter.update_status(text,data)
|
||||
self.twitter.update_status(status=text,in_reply_to_status_id=data)
|
||||
elif mtype == 'u':
|
||||
log_info('call: send_direct_message(%s,%s)' % (str(data),str(text)))
|
||||
self.twitter.send_direct_message(user=data,text=text)
|
||||
|
|
Loading…
Reference in a new issue