diff --git a/kmip/core/messages/contents.py b/kmip/core/messages/contents.py index dbe64da..3b46af2 100644 --- a/kmip/core/messages/contents.py +++ b/kmip/core/messages/contents.py @@ -103,10 +103,9 @@ class ProtocolVersion(Struct): def __eq__(self, other): if isinstance(other, ProtocolVersion): if ((self.protocol_version_major == - other.protocol_version_major) - and - (self.protocol_version_minor == - other.protocol_version_minor)): + other.protocol_version_major) and + (self.protocol_version_minor == + other.protocol_version_minor)): return True else: return False