From 1406201eaf1fe2e8561d3de1617b035b0e345990 2012-06-07 00:10:15 From: MinRK Date: 2012-06-07 00:10:15 Subject: [PATCH] remove redundant `ipython profile locate` entry point --- diff --git a/IPython/core/profileapp.py b/IPython/core/profileapp.py index 34215c8..f83fd13 100644 --- a/IPython/core/profileapp.py +++ b/IPython/core/profileapp.py @@ -86,7 +86,7 @@ _main_examples = """ ipython profile create -h # show the help string for the create subcommand ipython profile list -h # show the help string for the list subcommand -ipython profile locate foo # print the path to the directory for profile 'foo' +ipython locate profile foo # print the path to the directory for profile 'foo' """ #----------------------------------------------------------------------------- @@ -293,7 +293,6 @@ class ProfileApp(Application): subcommands = Dict(dict( create = (ProfileCreate, ProfileCreate.description.splitlines()[0]), list = (ProfileList, ProfileList.description.splitlines()[0]), - locate = (ProfileLocate, ProfileLocate.description.splitlines()[0]), )) def start(self):