Autoflake irc.py
This commit is contained in:
parent
228ced97ef
commit
8f0933ba68
1 changed files with 1 additions and 3 deletions
4
irc.py
4
irc.py
|
@ -4,9 +4,7 @@ import random
|
||||||
import time
|
import time
|
||||||
import ssl
|
import ssl
|
||||||
import sys
|
import sys
|
||||||
import select
|
|
||||||
import datetime
|
import datetime
|
||||||
import traceback
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from PyQt6 import QtCore, QtGui
|
from PyQt6 import QtCore, QtGui
|
||||||
|
@ -1055,7 +1053,7 @@ class PesterIRC(QtCore.QThread):
|
||||||
"Failed to pass command, did the server pass an unsupported paramater? "
|
"Failed to pass command, did the server pass an unsupported paramater? "
|
||||||
+ str(e)
|
+ str(e)
|
||||||
)
|
)
|
||||||
except Exception as e:
|
except Exception:
|
||||||
# logging.info("Failed to pass command, %s" % str(e))
|
# logging.info("Failed to pass command, %s" % str(e))
|
||||||
PchumLog.exception("Failed to pass command")
|
PchumLog.exception("Failed to pass command")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue