mirror of
https://github.com/SELinuxProject/setools
synced 2025-04-04 15:29:44 +00:00
Fix BaseMLSLevel incomp operator logic.
This commit is contained in:
parent
9e629776f4
commit
cdeeb7a92b
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user