[entropy.db] fix issue causing ~app-foo/foo-1.2.3#tag to not get matched, "~" operator compare check was missing

This commit is contained in:
Fabio Erculiani
2010-01-28 12:39:59 +01:00
parent e3c6ce32cb
commit df80cdfede
+2
View File
@@ -8216,6 +8216,8 @@ class EntropyRepository(EntropyRepositoryPluginStore, TextInterface):
return token
elif operators == "<=" and compare > -1:
return token
elif operators == "~": # do not filter "any-rev" requests here.
return token
def __filterSlotTagUse(self, found_ids, slot, tag, use, operators):