From df80cdfede2fb61b550b0d7ec909ac9d35bb4732 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Thu, 28 Jan 2010 12:39:59 +0100 Subject: [PATCH] [entropy.db] fix issue causing ~app-foo/foo-1.2.3#tag to not get matched, "~" operator compare check was missing --- libraries/entropy/db/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libraries/entropy/db/__init__.py b/libraries/entropy/db/__init__.py index 49cb73751..f5253f83f 100644 --- a/libraries/entropy/db/__init__.py +++ b/libraries/entropy/db/__init__.py @@ -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):