Browse Source

Fix role comparisons.

Fixes #409
pull/401/merge
Rapptz 8 years ago
parent
commit
b7c90a5e3d
  1. 2
      discord/role.py

2
discord/role.py

@ -99,7 +99,7 @@ class Role(Hashable):
return True
if self.position == other.position:
return self.id > other.id
return int(self.id) > int(other.id)
return False

Loading…
Cancel
Save