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 063741381F3 for ; Wed, 15 May 2013 20:21:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 646C6E0828; Wed, 15 May 2013 20:21:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 076E0E0828 for ; Wed, 15 May 2013 20:21:51 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 16ACB33E08E for ; Wed, 15 May 2013 20:21:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 8A9F3E5308 for ; Wed, 15 May 2013 20:21:49 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1368649276.11f956411c3d79bb4d81911531738fdabc31dc5d.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/dispatch-conf X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 11f956411c3d79bb4d81911531738fdabc31dc5d X-VCS-Branch: master Date: Wed, 15 May 2013 20:21:49 +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: 75a8e7c8-ad70-488e-a956-950d7fcf3ca2 X-Archives-Hash: 8b04bf47906d79393478ad04e5c2e419 commit: 11f956411c3d79bb4d81911531738fdabc31dc5d Author: Vladimir Romanov gmail com> AuthorDate: Wed May 15 20:21:16 2013 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed May 15 20:21:16 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=11f95641 dispatch-conf: fix python2-style print call --- bin/dispatch-conf | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/bin/dispatch-conf b/bin/dispatch-conf index 90b407a..a41464f 100755 --- a/bin/dispatch-conf +++ b/bin/dispatch-conf @@ -407,7 +407,8 @@ class dispatch: def do_help (self): - print(); print + print() + print() print(' u -- update current config with new config and continue') print(' z -- zap (delete) new config and continue')