Changed an if to an elif in lasturl.

This commit is contained in:
Jeremy Fincher 2003-09-03 17:03:38 +00:00
parent 1da0f301f5
commit 67d5465329

View File

@ -223,7 +223,7 @@ class URLSnarfer(callbacks.Privmsg, ChannelDBHandler):
option = option[2:] # Strip off the --.
if option == 'nolimit':
nolimit = True
if option == 'from':
elif option == 'from':
criteria.append('added_by LIKE %s')
formats.append(argument)
elif option == 'with':