Commit ab5e1988 by Nicholas Chammas Committed by Sébastien Eustace

Tweak help text for poetry config (#326)

parent d98f1689
...@@ -24,15 +24,15 @@ class ConfigCommand(Command): ...@@ -24,15 +24,15 @@ class ConfigCommand(Command):
{ --unset : Unset configuration setting } { --unset : Unset configuration setting }
""" """
help = """This command allows you to edit the poetry config settings and repositories.. help = """This command allows you to edit the poetry config settings and repositories.
To add a repository: To add a repository:
<comment>poetry repositories.foo https://bar.com/simple/</comment> <comment>poetry config repositories.foo https://bar.com/simple/</comment>
To remove a repository (repo is a short alias for repositories): To remove a repository (repo is a short alias for repositories):
<comment>poetry --unset repo.foo</comment> <comment>poetry config --unset repo.foo</comment>
""" """
def __init__(self): def __init__(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment