From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 00564138C9D for ; Tue, 2 Jun 2015 22:10:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AC488E081E; Tue, 2 Jun 2015 22:10:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5D8EEE081E for ; Tue, 2 Jun 2015 22:10:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6BE093409B9 for ; Tue, 2 Jun 2015 22:10:52 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E5DAA13 for ; Tue, 2 Jun 2015 22:10:48 +0000 (UTC) From: "Paul Varner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Paul Varner" Message-ID: <1433282954.1c0c61bc2b4ed4d53612d5effb36c8483fea1bca.fuzzyray@gentoo> Subject: [gentoo-commits] proj/gentoolkit:gentoolkit commit in: pym/gentoolkit/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: pym/gentoolkit/query.py X-VCS-Directories: pym/gentoolkit/ X-VCS-Committer: fuzzyray X-VCS-Committer-Name: Paul Varner X-VCS-Revision: 1c0c61bc2b4ed4d53612d5effb36c8483fea1bca X-VCS-Branch: gentoolkit Date: Tue, 2 Jun 2015 22:10:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 157d4e49-17f8-4b63-83cd-e776fac8f663 X-Archives-Hash: 609bc5c257f8474bcc1695f4ef9190c7 commit: 1c0c61bc2b4ed4d53612d5effb36c8483fea1bca Author: Paul Varner gentoo org> AuthorDate: Tue Jun 2 22:09:14 2015 +0000 Commit: Paul Varner gentoo org> CommitDate: Tue Jun 2 22:09:14 2015 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=1c0c61bc gentoolkit: Fix query.py to properly work with sets (Bug 546726) pym/gentoolkit/query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/gentoolkit/query.py b/pym/gentoolkit/query.py index c0ce977..df6e2fd 100644 --- a/pym/gentoolkit/query.py +++ b/pym/gentoolkit/query.py @@ -362,7 +362,7 @@ class Query(CPV): q = self.query for atom in atoms: - self.query = atom + self.query = str(atom) result.extend(self._do_simple_lookup(show_progress=False)) self.query = q