twitter: remove @ from user name when tipping

This commit is contained in:
moneromooo 2015-03-16 21:00:47 +00:00
parent a4357a3ee7
commit b757441c15

View file

@ -174,7 +174,7 @@ class TwitterNetwork(Network):
target=match.group(0) target=match.group(0)
if self.on_command: if self.on_command:
try: try:
synthetic_cmd=['tip',target,line.replace('+','').replace(target,'').strip()] synthetic_cmd=['tip',target.replace('@',''),line.replace('+','').replace(target,'').strip()]
log_log('Running synthetic command: %s' % (str(synthetic_cmd))) log_log('Running synthetic command: %s' % (str(synthetic_cmd)))
self.on_command(link,synthetic_cmd) self.on_command(link,synthetic_cmd)
except Exception,e: except Exception,e: