Skip to content

Commit

Permalink
append instead of prepend
Browse files Browse the repository at this point in the history
  • Loading branch information
finswimmer committed Jun 6, 2020
1 parent 339859c commit 32b9bb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poetry/layouts/layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def generate_poetry_content(self, original_toml):
content = dumps(content)

if original_toml:
content += "\n" + dumps(original_toml)
content = dumps(original_toml) + "\n" + content

return content

Expand Down

0 comments on commit 32b9bb9

Please sign in to comment.