Replace if with try statement

This commit is contained in:
jw 2017-10-29 00:07:19 -07:00 committed by GitHub
parent ed00dccd5a
commit d6d4ec5c98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 4 deletions

View File

@ -160,10 +160,12 @@ class RedditNetwork(Network):
while '' in cmd:
cmd.remove('')
cmd[0] = cmd[0].strip(' \t\n\r')
if cmd[1]:
if cmd[0] == u'tip' and cmd[1][0:3] == u'/u/':
log_info("Subbing out /u/ from username")
cmd[1] = cmd[1][3:]
try:
if cmd[0] == u'tip' and cmd[1][0:3] == u'/u/':
log_info("Subbing out /u/ from username")
cmd[1] = cmd[1][3:]
except:
pass
log_info('Found command from %s: %s' % (link.identity(), str(cmd)))
if self.on_command:
self.on_command(link,cmd)