Fix BaseMLSLevel incomp operator logic.

This commit is contained in:
Chris PeBenito 2015-02-27 11:18:52 -05:00
parent 9e629776f4
commit cdeeb7a92b

View File

@ -311,7 +311,7 @@ class BaseMLSLevel(symbol.PolicySymbol):
def __xor__(self, other):
"""Incomp operator."""
return (not self >= other and not self <= other)
return (not (self >= other or self <= other))
@property
def sensitivity(self):