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 74642138E66 for ; Sun, 23 Feb 2014 19:30:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3850BE0ABE; Sun, 23 Feb 2014 19:30:31 +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 4E699E0A60 for ; Sun, 23 Feb 2014 19:30:30 +0000 (UTC) Received: from big_daddy.dol-sen.ca (S010600222de111ff.vc.shawcable.net [96.49.5.156]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: dolsen) by smtp.gentoo.org (Postfix) with ESMTPSA id 66DAE33F999 for ; Sun, 23 Feb 2014 19:30:29 +0000 (UTC) From: Brian Dolbec To: gentoo-portage-dev@lists.gentoo.org Subject: [gentoo-portage-dev] [PATCH v2 2/2] Whitespace cleanup Date: Sun, 23 Feb 2014 11:25:50 -0800 Message-Id: <1393183550-18757-3-git-send-email-dolsen@gentoo.org> X-Mailer: git-send-email 1.8.5.3 In-Reply-To: <1393183550-18757-1-git-send-email-dolsen@gentoo.org> References: <1393142854-20700-1-git-send-email-dolsen@gentoo.org> <1393183550-18757-1-git-send-email-dolsen@gentoo.org> In-Reply-To: <1393142854-20700-1-git-send-email-dolsen@gentoo.org> References: <1393142854-20700-1-git-send-email-dolsen@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-portage-dev@lists.gentoo.org Reply-to: gentoo-portage-dev@lists.gentoo.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------1.8.5.3" X-Archives-Salt: 0f1703b7-709a-497e-a0e1-46be0e8da88a X-Archives-Hash: 09c024f2dc15c390fdb563066d056372 This is a multi-part message in MIME format. --------------1.8.5.3 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: 8bit --- pym/_emerge/actions.py | 4 ++-- pym/_emerge/main.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) --------------1.8.5.3 Content-Type: text/x-patch; name="v2-0002-Whitespace-cleanup.patch" Content-Transfer-Encoding: 8bit Content-Disposition: inline; filename="v2-0002-Whitespace-cleanup.patch" diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py index 95c5c14..9783689 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -3486,7 +3486,7 @@ def expand_set_arguments(myfiles, myaction, root_config): unmerge_actions = ("unmerge", "prune", "clean", "depclean") for a in myfiles: - if a.startswith(SETPREFIX): + if a.startswith(SETPREFIX): s = a[len(SETPREFIX):] if s not in sets: display_missing_pkg_set(root_config, s) @@ -3745,7 +3745,7 @@ def run_action(emerge_config): if retval != os.EX_OK: return retval - # Need to handle empty sets specially, otherwise emerge will react + # Need to handle empty sets specially, otherwise emerge will react # with the help message for empty argument lists if oldargs and not newargs: print("emerge: no targets left after set expansion") diff --git a/pym/_emerge/main.py b/pym/_emerge/main.py index 1e21ddb..38bbd77 100644 --- a/pym/_emerge/main.py +++ b/pym/_emerge/main.py @@ -81,7 +81,7 @@ COWSAY_MOO = """ ----------------------- \ ^__^ \ (oo)\_______ - (__)\ )\/\ + (__)\ )\/\ ||----w | || || @@ -583,7 +583,7 @@ def parse_opts(tmpcmdline, silent=False): "packages that have been rebuilt", "choices" : true_y_or_n }, - + "--rebuilt-binaries-timestamp": { "help" : "use only binaries that are newer than this " + \ "timestamp for --rebuilt-binaries", @@ -893,7 +893,7 @@ def parse_opts(tmpcmdline, silent=False): (myoptions.load_average,)) myoptions.load_average = load_average - + if myoptions.rebuilt_binaries_timestamp: try: rebuilt_binaries_timestamp = int(myoptions.rebuilt_binaries_timestamp) --------------1.8.5.3--