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 234171384A7 for ; Tue, 28 Jul 2015 23:29:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 22CBA14060; Tue, 28 Jul 2015 23:29:18 +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 CCC5514060 for ; Tue, 28 Jul 2015 23:29:17 +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 D6EE6340875 for ; Tue, 28 Jul 2015 23:29:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 617C8AA for ; Tue, 28 Jul 2015 23:29:15 +0000 (UTC) From: "Magnus Granberg" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Magnus Granberg" Message-ID: <1438126118.d33a7b804e966ed39f54371fb2f02d021a119cf6.zorry@gentoo> Subject: [gentoo-commits] proj/tinderbox-cluster:master commit in: tbc/pym/repoman/ X-VCS-Repository: proj/tinderbox-cluster X-VCS-Files: tbc/pym/repoman/main.py X-VCS-Directories: tbc/pym/repoman/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: d33a7b804e966ed39f54371fb2f02d021a119cf6 X-VCS-Branch: master Date: Tue, 28 Jul 2015 23:29:15 +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: c167e16d-5373-4d5e-b4e5-af836125ebe9 X-Archives-Hash: 0b33859608ffeb280762ad5cda5e8104 commit: d33a7b804e966ed39f54371fb2f02d021a119cf6 Author: Magnus Granberg gentoo org> AuthorDate: Tue Jul 28 23:28:38 2015 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Tue Jul 28 23:28:38 2015 +0000 URL: https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=d33a7b80 fix a indent error in repoman main tbc/pym/repoman/main.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tbc/pym/repoman/main.py b/tbc/pym/repoman/main.py index c49bd2c..2196009 100755 --- a/tbc/pym/repoman/main.py +++ b/tbc/pym/repoman/main.py @@ -1044,12 +1044,12 @@ def repoman_main(argv): myunadded = f.readlines() myunadded = ["./" + elem.rstrip() for elem in myunadded] - # Mercurial doesn't handle manually deleted files as removed from - # the repository, so the user need to remove them before commit, - # using "hg remove [FILES]" - with repoman_popen("hg status --no-status --deleted .") as f: - mydeleted = f.readlines() - mydeleted = ["./" + elem.rstrip() for elem in mydeleted] + # Mercurial doesn't handle manually deleted files as removed from + # the repository, so the user need to remove them before commit, + # using "hg remove [FILES]" + with repoman_popen("hg status --no-status --deleted .") as f: + mydeleted = f.readlines() + mydeleted = ["./" + elem.rstrip() for elem in mydeleted] myautoadd = [] if myunadded: