diff options
| author | 2019-02-22 17:44:46 +0000 | |
|---|---|---|
| committer | 2019-02-22 17:44:46 +0000 | |
| commit | 9408cc94870e3dfd4e872865256ce142ee78e7ca (patch) | |
| tree | 6e91bb2606a30bf4d2e4a2f1ac67944cb2a06d86 /modules | |
| parent | Typo, 'taget' -> 'target' (diff) | |
| signature | ||
Typo, 'ValuError' -> 'ValueError'
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/commands/outs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/outs.py b/modules/commands/outs.py index 342c7f36..7120227f 100644 --- a/modules/commands/outs.py +++ b/modules/commands/outs.py @@ -38,7 +38,7 @@ class Out(object): elif method == "NOTICE": line = self.server.send_notice(target_str, full_text, tags=tags) else: - raise ValuError("Unknown command methd '%s'" % method) + raise ValueError("Unknown command methd '%s'" % method) if line.truncated(): line.end_replace(STR_MORE) |
