Use equality operator for comparison to integer value.

pull/2/head
Ben Finney 2022-12-19 09:48:10 +11:00
rodzic a88f298e98
commit 4bed400c7d
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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!')