From: fuzzyray Date: Wed, 3 Sep 2008 20:17:45 +0000 (-0000) Subject: Remove debug print statement in equery belongs command (Bug #236483) X-Git-Tag: gentoolkit-0.2.4.3^2~41 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=099777f84a1e58324888f3bcf5d0105192c97277;p=gentoolkit.git Remove debug print statement in equery belongs command (Bug #236483) svn path=/; revision=513 --- diff --git a/trunk/src/equery/equery b/trunk/src/equery/equery index 9e319e9..d5b5945 100755 --- a/trunk/src/equery/equery +++ b/trunk/src/equery/equery @@ -375,7 +375,6 @@ class CmdListBelongs(Command): query[i] = query[i].rstrip('/') q = map(lambda x: ((len(x) and x[0] == "/") and "^" or "/") + re.escape(x) + "$", query) - print q try: q = "|".join(q) rx = re.compile(q)