Return-Path: X-Original-To: apmail-incubator-allura-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-allura-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9D1D1102AD for ; Thu, 8 Aug 2013 13:34:32 +0000 (UTC) Received: (qmail 33982 invoked by uid 500); 8 Aug 2013 13:34:26 -0000 Delivered-To: apmail-incubator-allura-commits-archive@incubator.apache.org Received: (qmail 33855 invoked by uid 500); 8 Aug 2013 13:34:26 -0000 Mailing-List: contact allura-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: allura-dev@incubator.apache.org Delivered-To: mailing list allura-commits@incubator.apache.org Received: (qmail 33240 invoked by uid 99); 8 Aug 2013 13:34:21 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Aug 2013 13:34:21 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 247EB835D6E; Thu, 8 Aug 2013 13:34:21 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: tvansteenburgh@apache.org To: allura-commits@incubator.apache.org Date: Thu, 08 Aug 2013 13:34:31 -0000 Message-Id: <0fbea19c0ea148ed97f305222817b47c@git.apache.org> In-Reply-To: <1c3b53e71fec4d8798ef817f2c8f22f8@git.apache.org> References: <1c3b53e71fec4d8798ef817f2c8f22f8@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [12/50] git commit: [#6441] ScriptTask doc parser chokes on %d [#6441] ScriptTask doc parser chokes on %d Signed-off-by: Tim Van Steenburgh Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/53e35eb9 Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/53e35eb9 Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/53e35eb9 Branch: refs/heads/tv/6458 Commit: 53e35eb9fcc2ac8b9bdc6541404c0392414966cb Parents: 7975c7c Author: Tim Van Steenburgh Authored: Wed Jul 31 13:17:36 2013 +0000 Committer: Tim Van Steenburgh Committed: Wed Jul 31 13:17:36 2013 +0000 ---------------------------------------------------------------------- ForgeTracker/forgetracker/scripts/import_tracker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/53e35eb9/ForgeTracker/forgetracker/scripts/import_tracker.py ---------------------------------------------------------------------- diff --git a/ForgeTracker/forgetracker/scripts/import_tracker.py b/ForgeTracker/forgetracker/scripts/import_tracker.py index a84bede..506e771 100644 --- a/ForgeTracker/forgetracker/scripts/import_tracker.py +++ b/ForgeTracker/forgetracker/scripts/import_tracker.py @@ -106,7 +106,7 @@ class ImportTracker(ScriptTask): parser.add_argument('-s', '--secret-key', action='store', dest='secret_key', help='Secret key') parser.add_argument('-p', '--project', action='store', dest='project', help='Project to import to') parser.add_argument('-t', '--tracker', action='store', dest='tracker', help='Tracker to import to') - parser.add_argument('-u', '--base-url', dest='base_url', default='https://sourceforge.net', help='Base Allura URL (%default)') + parser.add_argument('-u', '--base-url', dest='base_url', default='https://sourceforge.net', help='Base Allura URL (https://sourceforge.net)') parser.add_argument('-o', dest='import_opts', default=[], action='store', help='Specify import option(s)', metavar='opt=val') parser.add_argument('--user-map', dest='user_map_file', help='Map original users to SF.net users', metavar='JSON_FILE') parser.add_argument('--file_data', dest='file_data', help='json file', metavar='JSON_FILE')