Skip to content

Commit

Permalink
Drop -l as a short version of --license
Browse files Browse the repository at this point in the history
  • Loading branch information
juhoautio committed Jun 7, 2022
1 parent f4a190a commit 7d578a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/poetry/console/commands/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class InitCommand(Command):
flag=False,
multiple=True,
),
option("license", "l", "License of the package.", flag=False),
option("license", "License of the package.", flag=False),
]

help = """\
Expand Down
2 changes: 1 addition & 1 deletion src/poetry/console/commands/new.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class NewCommand(InitCommand):
flag=False,
multiple=True,
),
option("license", "l", "License of the package.", flag=False),
option("license", "License of the package.", flag=False),
option("src", None, "Use the src layout for the project."),
option(
"readme",
Expand Down

0 comments on commit 7d578a1

Please sign in to comment.