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 8a9ca22 commit 219f6f8Copy full SHA for 219f6f8
azure-devops/azure/devops/client.py
@@ -162,7 +162,9 @@ def _get_organization_resource_location(self, location_id):
162
def _get_deployment_url(self):
163
pos = self.normalized_url.rfind('/')
164
if pos > 0:
165
- return self.normalized_url[:pos]
+ deployment_url = self.normalized_url[:pos]
166
+ if deployment_url.find('://') > 0:
167
+ return deployment_url
168
return None
169
170
def _get_resource_location(self, url, location_id):
0 commit comments