From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 52867139083 for ; Wed, 6 Dec 2017 18:51:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B2335E0F2F; Wed, 6 Dec 2017 18:51:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8F100E0F2F for ; Wed, 6 Dec 2017 18:51:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8071933BEBE for ; Wed, 6 Dec 2017 18:51:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B215AE43 for ; Wed, 6 Dec 2017 18:51:55 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1512586299.377ed63f69739f761eee3a06c7105bd0c0d02a80.robbat2@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/main.py X-VCS-Directories: catalyst/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 377ed63f69739f761eee3a06c7105bd0c0d02a80 X-VCS-Branch: master Date: Wed, 6 Dec 2017 18:51:55 +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: 01a48c0f-4d1e-44e1-9276-ae21c2edcad8 X-Archives-Hash: 157a83d79536f54380064f69e3355857 commit: 377ed63f69739f761eee3a06c7105bd0c0d02a80 Author: Robin H. Johnson gentoo org> AuthorDate: Wed Dec 6 18:51:39 2017 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Wed Dec 6 18:51:39 2017 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=377ed63f main: fix leading whitespace Signed-off-by: Robin H. Johnson gentoo.org> catalyst/main.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/catalyst/main.py b/catalyst/main.py index 3a428d3a..eed40a66 100644 --- a/catalyst/main.py +++ b/catalyst/main.py @@ -190,13 +190,13 @@ $ catalyst -f stage1-specfile.spec""" group.add_argument('-T', '--purgetmponly', default=False, action='store_true', help='clear tmp dirs and autoresume flags and exit') - group.add_argument('--versioned-cachedir', - dest='versioned_cachedir', action='store_true', - help='use stage version on cache directory name') - group.add_argument('--unversioned-cachedir', - dest='versioned_cachedir', action='store_false', - help='do not use stage version on cache directory name') - group.set_defaults(versioned_cachedir=False) + group.add_argument('--versioned-cachedir', + dest='versioned_cachedir', action='store_true', + help='use stage version on cache directory name') + group.add_argument('--unversioned-cachedir', + dest='versioned_cachedir', action='store_false', + help='do not use stage version on cache directory name') + group.set_defaults(versioned_cachedir=False) group = parser.add_argument_group('Target/config file management')