Skip to content

Commit b16064b

Browse files
committed
append instead of prepend
1 parent 08f490e commit b16064b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: poetry/layouts/layout.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def generate_poetry_content(self, original_toml):
117117
content = dumps(content)
118118

119119
if original_toml:
120-
content += "\n" + dumps(original_toml)
120+
content = dumps(original_toml) + "\n" + content
121121

122122
return content
123123

0 commit comments

Comments
 (0)