Skip to content
This repository was archived by the owner on Dec 16, 2017. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cloudinstall/controllers/installbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def __init__(self, ui, config, loop):
def _set_install_type(self, install_type):
self.install_type = install_type
self.ui.show_password_input(
'Create a New OpenStack Password', self._save_password)
'Create a New Password', self._save_password)

def _save_password(self, creds):
""" Checks passwords match and proceeds
Expand All @@ -63,7 +63,7 @@ def _save_password(self, creds):
if password.isdigit():
self.ui.status_error_message("Password must not be a number")
return self.ui.show_password_input(
'Create a New OpenStack Password', self._save_password)
'Create a New Password', self._save_password)
if 'confirm_password' in creds:
confirm_password = creds['confirm_password'].value
if password and password == confirm_password:
Expand All @@ -72,7 +72,7 @@ def _save_password(self, creds):
else:
self.ui.status_error_message('Passwords did not match')
return self.ui.show_password_input(
'Create a New OpenStack Password', self._save_password)
'Create a New Password', self._save_password)

def _save_maas_creds(self, creds):
maas_server = creds['maas_server'].value
Expand Down