We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9228671 commit 2b52168Copy full SHA for 2b52168
src/pages/SetupPy/index.js
@@ -33,7 +33,7 @@ export default class SetupPy extends React.Component {
33
srcFolder: true,
34
versionInPackage: true,
35
packageData: false,
36
- packageName: "hello-world",
+ packageName: "hello_world",
37
entrypoint: false,
38
};
39
}
@@ -129,7 +129,7 @@ export default class SetupPy extends React.Component {
129
130
131
filterPackagename(value) {
132
- return value.replace(/[^\w\s-]/gi, "");
+ return value.replace(/[^\w\s-]/gi, "").replace("-", "_");
133
134
135
filterAuthorname(value) {
0 commit comments