Skip to content

Commit f7048bd

Browse files
committed
Add comment
1 parent 9750662 commit f7048bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/poetry.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function pyprojectTomlToRequirements() {
3636
const editableFlag = new RegExp(/^-e /gm);
3737
const sourceRequirements = path.join(this.servicePath, 'requirements.txt');
3838
const requirementsContents =
39-
res.stdout.toString() ||
39+
res.stdout.toString() || // As of poetry 1.0.0b1, requirements.txt is printed to standard output when the -o option is not specified.
4040
fse.readFileSync(sourceRequirements, {
4141
encoding: 'utf-8'
4242
});

0 commit comments

Comments
 (0)