Fixed pep8 error.
This commit is contained in:
@@ -158,7 +158,8 @@ class CiscoUCSMDriver():
|
||||
data = data.replace(VLAN_NAME, vlan_name)
|
||||
return data
|
||||
|
||||
def _create_profile_client_post_data(self, profile_name, profile_client_name):
|
||||
def _create_profile_client_post_data(self, profile_name,
|
||||
profile_client_name):
|
||||
data = ASSOCIATE_PROFILE.replace(PROFILE_NAME, profile_name)
|
||||
data = data.replace(PROFILE_CLIENT, profile_client_name)
|
||||
return data
|
||||
@@ -198,7 +199,8 @@ class CiscoUCSMDriver():
|
||||
ucsm_password):
|
||||
data = self._create_profile_post_data(profile_name, vlan_name)
|
||||
self._post_data(ucsm_ip, ucsm_username, ucsm_password, data)
|
||||
data = self._create_profile_client_post_data(profile_name, profile_name[-16:])
|
||||
data = self._create_profile_client_post_data(profile_name,
|
||||
profile_name[-16:])
|
||||
self._post_data(ucsm_ip, ucsm_username, ucsm_password, data)
|
||||
|
||||
def change_vlan_in_profile(self, profile_name, old_vlan_name,
|
||||
|
||||
Reference in New Issue
Block a user