diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2016-03-11 07:38:34 -0500 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2016-03-11 07:38:34 -0500 |
commit | 7bb6e3f38680a9ed297827e24e39080d1077b1fa (patch) | |
tree | 4c68445869f332ea7b093809bb5602b332796f67 | |
parent | Improved fix for (Debian bug #749650). (diff) | |
download | irker-7bb6e3f38680a9ed297827e24e39080d1077b1fa.tar.xz |
Fix a dropped stich in the 2-to-3 port.
-rwxr-xr-x | irkerd | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -22,9 +22,6 @@ Requires Python 2.7, or: """ # SPDX-License-Identifier: BSD-2-Clause - - - # These things might need tuning HOST = "localhost" @@ -143,16 +140,14 @@ except NameError: # Python 3 # still look similar to parts of irclib because I contributed to that # code before giving up on it. -class IRCError(Exception): +class IRCError(BaseException): "An IRC exception" pass - class InvalidRequest(ValueError): "An invalid JSON request" pass - class IRCClient(): "An IRC client session to one or more servers." def __init__(self): |