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 66ceec4 commit 0386f58Copy full SHA for 0386f58
src/azure-cli/azure/cli/command_modules/appservice/custom.py
@@ -9,7 +9,7 @@
9
import re
10
from xml.etree import ElementTree
11
12
-from urllib.parse import urlparse
+from urllib.parse import quote, urlparse
13
from urllib.request import urlopen
14
15
from binascii import hexlify
@@ -8421,7 +8421,7 @@ def _build_onedeploy_scm_url(params):
8421
deploy_url = deploy_url + '&ignorestack=' + str(params.should_ignore_stack)
8422
8423
if params.target_path is not None:
8424
- deploy_url = deploy_url + '&path=' + params.target_path
+ deploy_url = deploy_url + '&path=' + quote(params.target_path)
8425
8426
return deploy_url
8427
0 commit comments