Ben Kurtovic 12 лет назад
Родитель
Сommit
3c9c63d573
1 измененных файлов: 2 добавлений и 2 удалений
  1. +2
    -2
      earwigbot/irc/data.py

+ 2
- 2
earwigbot/irc/data.py Просмотреть файл

@@ -90,11 +90,11 @@ class Data(object):
Parse a command given as "!command key1=value1 key2=value2..." into a
dict, self.kwargs, like {'key1': 'value2', 'key2': 'value2'...}.
"""
for arg in self.args[2:]:
for arg in self.args:
try:
key, value = re.findall("^(.*?)\=(.*?)$", arg)[0]
except IndexError:
pass
continue
if key and value:
self.kwargs[key] = value



Загрузка…
Отмена
Сохранить