Skip to content

Commit 4616399

Browse files
author
Bart Hazen
committed
Fix console script quotes.
1 parent d6beb19 commit 4616399

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/SetupPy/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export default class SetupPy extends React.Component {
112112
if (this.state.entrypoint) {
113113
code.push(` entry_points={`);
114114
code.push(` "console_scripts": [`);
115-
code.push(` "` + this.state.packageName + `"="` + this.state.packageName + `.__main__.main",`)
115+
code.push(` "` + this.state.packageName + `=` + this.state.packageName + `.__main__.main",`)
116116
code.push(` ]},`);
117117
}
118118
if (this.state.classifiers.length > 0) {

0 commit comments

Comments
 (0)