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 26A6A1381FA for ; Mon, 2 Jun 2014 01:10:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D011BE0944; Mon, 2 Jun 2014 01:10:51 +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 282B8E0944 for ; Mon, 2 Jun 2014 01:10:51 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2F53033FF8E for ; Mon, 2 Jun 2014 01:10:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 9ABE6182D4 for ; Mon, 2 Jun 2014 01:10:48 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1401670891.3f96a3f6f4e7192110b0d5b51d1a1188ae0fbecb.dol-sen@gentoo> Subject: [gentoo-commits] proj/portage:repoman commit in: pym/repoman/ X-VCS-Repository: proj/portage X-VCS-Files: pym/repoman/main.py X-VCS-Directories: pym/repoman/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 3f96a3f6f4e7192110b0d5b51d1a1188ae0fbecb X-VCS-Branch: repoman Date: Mon, 2 Jun 2014 01: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: cb17b840-e9c2-4438-8df2-994cf2dcd471 X-Archives-Hash: d9d5bb9bb69c3b417aabb65c70273f42 commit: 3f96a3f6f4e7192110b0d5b51d1a1188ae0fbecb Author: Brian Dolbec gentoo org> AuthorDate: Mon Jun 2 01:01:31 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Mon Jun 2 01:01:31 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=3f96a3f6 repoman/main.py: Rename manifester return variable 'skip' to 'continue_' --- pym/repoman/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/repoman/main.py b/pym/repoman/main.py index 6a7ada7..f8bd264 100755 --- a/pym/repoman/main.py +++ b/pym/repoman/main.py @@ -333,8 +333,8 @@ for xpkg in effective_scanlist: ##################### manifester = Manifests(options, repoman_settings) - skip = manifester.run(checkdir, portdb) - if skip: + continue_ = manifester.run(checkdir, portdb) + if continue_: continue ######################