We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51a3995 commit 6e70f63Copy full SHA for 6e70f63
src/komodoenv/creator.py
@@ -136,9 +136,9 @@ def create(self):
136
# alphabetically, and thus allowing for other editable installs to 'overwrite'
137
# komodo packages.
138
with self.create_file(
139
- Path("root") / self.dstpy.site_packages_path / "zzz_komodo.pth",
+ self.dstpy.site_packages_path / "zzz_komodo.pth",
140
) as f:
141
- print("\n".join(python_paths), file=f)
+ f.write("\n".join(python_paths) + "\n")
142
143
# Create & run komodo-update
144
with (
0 commit comments