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 aab7c2b commit cc36b4dCopy full SHA for cc36b4d
1 file changed
src/briefcase/commands/convert.py
@@ -113,12 +113,8 @@ def input_app_name(self, override_value: str | None) -> str:
113
)
114
115
default = "hello-world"
116
- if (
117
- "name" in self.pep621_data
118
- and is_valid_app_name(self.pep621_data["name"])
119
- and override_value is None
120
- ):
121
- app_name = canonicalize_name(self.pep621_data["name"])
+ if "name" in self.pep621_data and override_value is None:
+ app_name = canonicalize_name(self.pep621_data["name"]).replace("-", "_")
122
self.console.divider(title="App name")
123
self.console.prompt()
124
self.console.prompt(
0 commit comments