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 4E7CF138010 for ; Mon, 20 Aug 2012 11:16:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 12D5CE0653; Mon, 20 Aug 2012 11:16:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id CFCCAE0653 for ; Mon, 20 Aug 2012 11:16:26 +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 029681B41AA for ; Mon, 20 Aug 2012 11:16:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id B727EE5444 for ; Mon, 20 Aug 2012 11:16:24 +0000 (UTC) From: "André Erdmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "André Erdmann" Message-ID: <1345461137.2610152acb3fcc3b73289bdd8617d6f8a3681238.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: roverlay/ X-VCS-Repository: proj/R_overlay X-VCS-Files: roverlay/argutil.py X-VCS-Directories: roverlay/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: 2610152acb3fcc3b73289bdd8617d6f8a3681238 X-VCS-Branch: master Date: Mon, 20 Aug 2012 11:16:24 +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: 22e1b698-ec0c-4310-a690-cb8df23bf5b1 X-Archives-Hash: 1e537f2a26d8d41d2d2eebff82a0b52c commit: 2610152acb3fcc3b73289bdd8617d6f8a3681238 Author: André Erdmann mailerd de> AuthorDate: Mon Aug 20 11:12:17 2012 +0000 Commit: André Erdmann mailerd de> CommitDate: Mon Aug 20 11:12:17 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=2610152a argutil: remove --debug arg (has no effect) --- roverlay/argutil.py | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/roverlay/argutil.py b/roverlay/argutil.py index d3c498a..a990b25 100644 --- a/roverlay/argutil.py +++ b/roverlay/argutil.py @@ -262,15 +262,15 @@ def get_parser ( command_map, default_config_file, default_command='create' ): action='store_false', ) - # TODO - arg ( - '--debug', - help=''' - Turn on debugging. This produces a lot of messages. - (TODO: has no effect). - ''', - **opt_in - ) +# # TODO +# arg ( +# '--debug', +# help=''' +# Turn on debugging. This produces a lot of messages. +# (TODO: has no effect). +# ''', +# **opt_in +# ) return parser # --- end of get_parser (...) ---