Skip to content

Commit

Permalink
fix(exporter): tweak exception phrasing
Browse files Browse the repository at this point in the history
  • Loading branch information
neersighted committed Oct 1, 2022
1 parent 99e6c47 commit ae3c8fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/poetry_plugin_export/exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ def _export_generic_txt(
if package.develop:
if not allow_editable:
raise RuntimeError(
f"{package.pretty_name} is configured for develop mode"
" which is incompatible with the constraints format."
f"{package.pretty_name} is locked in develop (editable) mode,"
" which is incompatible with the constraints.txt format."
)
line += "-e "

Expand Down

0 comments on commit ae3c8fc

Please sign in to comment.