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
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ class TwitterNetwork(Network):
target=match.group(0)
if self.on_command:
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)))
self.on_command(link,synthetic_cmd)
except Exception,e: