Fixing a bug to fetch correct account name (#22)

* Fixing a bug to fetch correct account name

Replaced .strip() with .split() to fetch correct account name

* Updated patch version

Updated patch version
This commit is contained in:
Vinod Kumar 2018-06-12 15:56:21 +05:30 коммит произвёл GitHub
Родитель fb4a89f765
Коммит 2649d236be
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -7,7 +7,7 @@
from setuptools import setup, find_packages
NAME = "vsts-cd-manager"
VERSION = "1.0.1"
VERSION = "1.0.2"
# To install the library, run the following
#

Просмотреть файл

@ -157,7 +157,7 @@ class ContinuousDeliveryManager(object):
raise RuntimeError('Project URL should be in format https://<accountname>.visualstudio.com/<projectname>')
def _get_vsts_account_name(self, cd_project_url):
return (cd_project_url.split('.visualstudio.com', 1)[0]).strip('https://')
return (cd_project_url.split('.visualstudio.com', 1)[0]).split('https://', 1)[1]
def get_provisioning_configuration_target(self, auth_info, swap_with_slot, test, webapp_list):
swap_with_slot_config = None if swap_with_slot is None else SlotSwapConfiguration(swap_with_slot)