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 DD70713888F for ; Wed, 7 Oct 2015 23:22:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2378EE0875; Wed, 7 Oct 2015 23:22:25 +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 BB019E0875 for ; Wed, 7 Oct 2015 23:22:24 +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 72545340752 for ; Wed, 7 Oct 2015 23:22:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DECE2279 for ; Wed, 7 Oct 2015 23:22:19 +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: <1444259929.edd7a7e2fd16cb1d8ba6fbd05c5dee21966a920f.dolsen@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/repoman/ X-VCS-Repository: proj/portage X-VCS-Files: pym/repoman/scan.py X-VCS-Directories: pym/repoman/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: edd7a7e2fd16cb1d8ba6fbd05c5dee21966a920f X-VCS-Branch: master Date: Wed, 7 Oct 2015 23:22:19 +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: 4f38054f-901e-4351-8abe-2e7a76fdc60c X-Archives-Hash: 2e471faa36fc766c1562fac6a0a4785b commit: edd7a7e2fd16cb1d8ba6fbd05c5dee21966a920f Author: Tom Daff cam ac uk> AuthorDate: Mon Oct 5 15:31:10 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Wed Oct 7 23:18:49 2015 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=edd7a7e2 repoman: fix del of out of scope name in hg_scan pym/repoman/scan.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pym/repoman/scan.py b/pym/repoman/scan.py index 28dfa15..0b74efd 100644 --- a/pym/repoman/scan.py +++ b/pym/repoman/scan.py @@ -168,4 +168,5 @@ class Changes(object): with repoman_popen("hg status --no-status --removed .") as f: removed = f.readlines() self.removed = ["./" + elem.rstrip() for elem in removed] - del changed, new, removed + del removed + del changed, new