Skip to content

Commit e82e718

Browse files
authored
Merge pull request #203166 from charris-msft/charris-remove_quotes_for_cmd
Remove quotes to make command work for CMD users
2 parents 5ce9536 + 6d1ff73 commit e82e718

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/app-service/includes/quickstart-python/create-app-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ az login
1717
Create the webapp and other resources, then deploy your code to Azure using [az webapp up](/cli/azure/webapp#az-webapp-up).
1818

1919
```azurecli
20-
az webapp up --runtime 'PYTHON:3.9' --sku B1 --logs
20+
az webapp up --runtime PYTHON:3.9 --sku B1 --logs
2121
```
2222

2323
* The `--runtime` parameter specifies what version of Python your app is running. This example uses Python 3.9. To list all available runtimes, use the command `az webapp list-runtimes --os linux --output table`.

0 commit comments

Comments
 (0)