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 6F2F91399CE for ; Thu, 3 Sep 2015 15:14:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D28B2141F9; Thu, 3 Sep 2015 15:14:17 +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 79B70141EC for ; Thu, 3 Sep 2015 15:14:16 +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 C43B934090B for ; Thu, 3 Sep 2015 15:14:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E7A30192 for ; Thu, 3 Sep 2015 15:14:11 +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: <1441292942.fc30e2ab67dd74c6f52a042587a32d528fa576cf.dolsen@gentoo> Subject: [gentoo-commits] proj/catalyst:pending commit in: catalyst/base/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/base/stagebase.py X-VCS-Directories: catalyst/base/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: fc30e2ab67dd74c6f52a042587a32d528fa576cf X-VCS-Branch: pending Date: Thu, 3 Sep 2015 15:14:11 +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: 9a822774-03a6-4ab7-8026-a295a3c75a60 X-Archives-Hash: 44d3c8eea0aedbad1cf5f46e083cbad8 commit: fc30e2ab67dd74c6f52a042587a32d528fa576cf Author: Brian Dolbec gentoo org> AuthorDate: Mon Jun 15 16:31:33 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Thu Sep 3 15:09:02 2015 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=fc30e2ab catalyst/base/stagebase.py: Fix "Creating stage tarball..." print() catalyst/base/stagebase.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index aba330e..7231303 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -1307,7 +1307,8 @@ class StageBase(TargetBase, ClearBase, GenBase): target_filename = ".".join([self.settings["target_path"], self.compressor.extension(pack_info['mode'])]) - print "Creating stage tarball..." + print("Creating stage tarball... mode:", + self.settings["compression_mode"]) if self.compressor.compress(pack_info): self.gen_contents_file(target_filename)