| 198 modifiers = {} |
198 modifiers = {} |
| 199 if target: |
199 if target: |
| 200 for modifier in target.split(",")[1:]: |
200 for modifier in target.split(",")[1:]: |
| 201 modifiers[modifier] = True |
201 modifiers[modifier] = True |
| 202 |
202 |
| 203 isnick = modifiers.has_key("isnick") |
203 isnick = True if "isnick" in modifiers else False |
| 204 |
204 |
| 205 paramstring = match.group(5) |
205 paramstring = match.group(5) |
| 206 params = {} |
206 params = {} |
| 207 if paramstring: |
207 if paramstring: |
| 208 for param in paramstring.split("&"): |
208 for param in paramstring.split("&"): |