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 A40E6138CE8 for ; Mon, 15 Jun 2015 20:25:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38978E0835; Mon, 15 Jun 2015 20:25:03 +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 B9595E0835 for ; Mon, 15 Jun 2015 20:25:02 +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 06371340DC2 for ; Mon, 15 Jun 2015 20:25:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AE497A3E for ; Mon, 15 Jun 2015 20:25:00 +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: <1434385893.eebe07d435107f67418e838b34ecd036039bd453.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: eebe07d435107f67418e838b34ecd036039bd453 X-VCS-Branch: pending Date: Mon, 15 Jun 2015 20:25:00 +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: ee6fd7f8-9ad2-43ee-97c6-b1fabd87de49 X-Archives-Hash: 8ddd81cd6b250971362d9e96eb73807c commit: eebe07d435107f67418e838b34ecd036039bd453 Author: Brian Dolbec gentoo org> AuthorDate: Mon Jun 15 16:31:33 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Mon Jun 15 16:31:33 2015 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=eebe07d4 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 20b9e69..73b930b 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -1279,7 +1279,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)