summaryrefslogtreecommitdiff
path: root/qpid/python/qpid/datatypes.py
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/python/qpid/datatypes.py')
-rw-r--r--qpid/python/qpid/datatypes.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/qpid/python/qpid/datatypes.py b/qpid/python/qpid/datatypes.py
index eb1f86b0b0..532995e051 100644
--- a/qpid/python/qpid/datatypes.py
+++ b/qpid/python/qpid/datatypes.py
@@ -289,7 +289,8 @@ class UUID:
def __cmp__(self, other):
if isinstance(other, UUID):
return cmp(self.bytes, other.bytes)
- raise NotImplemented()
+ else:
+ return -1
def __str__(self):
return "%08x-%04x-%04x-%04x-%04x%08x" % struct.unpack("!LHHHHL", self.bytes)