diff options
Diffstat (limited to 'module/network/XDCCBase.py')
-rw-r--r-- | module/network/XDCCBase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/network/XDCCBase.py b/module/network/XDCCBase.py index d36d6e897..1b9da1a23 100644 --- a/module/network/XDCCBase.py +++ b/module/network/XDCCBase.py @@ -247,7 +247,7 @@ class XDCCDownload(): raise XDCCError("Wrong channel") m = re.match('\x01DCC SEND (.*?) (\d+) (\d+)(?: (\d+))?\x01', msg["text"]) - if m != None: + if m is not None: done = True # get connection data |