diff options
author | Rob Austein <sra@hactrn.net> | 2007-12-22 23:41:27 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-12-22 23:41:27 +0000 |
commit | 8a65f4d8166d946a6a10fd4c869eb1b005d24879 (patch) | |
tree | 3dcec68d2000afe01a1146606cc60118117859b3 /scripts/rpki/resource_set.py | |
parent | 6a2b0a47212bb2213ff207972100508a9816c9b4 (diff) |
Checkpoint
svn path=/scripts/rpki/left_right.py; revision=1425
Diffstat (limited to 'scripts/rpki/resource_set.py')
-rw-r--r-- | scripts/rpki/resource_set.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/rpki/resource_set.py b/scripts/rpki/resource_set.py index baf68d82..2ea15643 100644 --- a/scripts/rpki/resource_set.py +++ b/scripts/rpki/resource_set.py @@ -428,7 +428,10 @@ class resource_bag(object): return not self.as and not self.v4 and not self.v6 def __eq__(self, other): - return self.as == other.as and self.v4 == other.v4 and self.v6 == other.v6 + return self.as == other.as and \ + self.v4 == other.v4 and \ + self.v6 == other.v6 and \ + self.valid_until == other.valid_until def __ne__(self, other): return not (self == other) |