Fix off-by-one error

This commit is contained in:
David Bartley 2008-03-10 00:44:39 -04:00
parent d1a781eb41
commit 42c64f6c87
1 changed files with 1 additions and 1 deletions

View File

@ -17,5 +17,5 @@ class Inactive:
term = "f0000"
term = reduce(max_term, member.get("term", []), term)
term = reduce(max_term, member.get("nonMemberTerm", []), term)
if terms.delta(term, terms.current()) > delta:
if terms.delta(term, terms.current()) >= delta:
print "%s %s" % (member['uid'][0].ljust(12), term)