Use equality operator for comparison to integer value.
This commit is contained in:
parent
a88f298e98
commit
4bed400c7d
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ def ejabberd_in():
|
|||
|
||||
input_length = sys.stdin.buffer.read(2)
|
||||
|
||||
if len(input_length) is not 2:
|
||||
if len(input_length) != 2:
|
||||
logging.debug("ejabberd sent us wrong things!")
|
||||
raise EjabberdInputError('Wrong input from ejabberd!')
|
||||
|
||||
|
|
Loading…
Reference in a new issue