fix !vreme issue with wrong number of arguments
This commit is contained in:
parent
f2b288fa30
commit
b416e04a9a
@ -32,6 +32,9 @@ def command(msg, rcpt):
|
||||
content = sf.getDmzTasks("https://todo.dmz.rs/")
|
||||
return content
|
||||
elif msg.startswith("!vreme") or msg.startswith("!prognoza") or msg.startswith("!weather"):
|
||||
_, query = msg.split(" ", 1)
|
||||
return sf.get_weather(query)
|
||||
|
||||
commandsplit = msg.split(" ", 1)
|
||||
if len(commandsplit) = 1:
|
||||
return sf.get_weather("Beograd")
|
||||
else:
|
||||
query = commandsplit[1]
|
||||
return sf.get_weather(query)
|
||||
|
Loading…
Reference in New Issue
Block a user