Typo, 'ValuError' -> 'ValueError'
This commit is contained in:
parent
76c6cc3709
commit
9408cc9487
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ class Out(object):
|
||||||
elif method == "NOTICE":
|
elif method == "NOTICE":
|
||||||
line = self.server.send_notice(target_str, full_text, tags=tags)
|
line = self.server.send_notice(target_str, full_text, tags=tags)
|
||||||
else:
|
else:
|
||||||
raise ValuError("Unknown command methd '%s'" % method)
|
raise ValueError("Unknown command methd '%s'" % method)
|
||||||
|
|
||||||
if line.truncated():
|
if line.truncated():
|
||||||
line.end_replace(STR_MORE)
|
line.end_replace(STR_MORE)
|
||||||
|
|
Loading…
Add table
Reference in a new issue