diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-12-02 08:30:47 +0100 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-12-05 14:14:14 +0100 |
commit | d13fac5935bb3fe573dc9a79e06b8cffde37712e (patch) | |
tree | 0333a6fd3380a1e85180591641a61597797ed8f7 /functest/cli | |
parent | dc733c31177b0ffdc4c30b9c4801b765909f1c50 (diff) |
Fix Pep8 issues related to \
JIRA: FUNCTEST-630
Change-Id: I2b6d3bec67c6fe290fb2ad795a54a2dd2e3c7a0b
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'functest/cli')
-rw-r--r-- | functest/cli/commands/cli_os.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/functest/cli/commands/cli_os.py b/functest/cli/commands/cli_os.py index 140be191..bb859219 100644 --- a/functest/cli/commands/cli_os.py +++ b/functest/cli/commands/cli_os.py @@ -68,10 +68,11 @@ class CliOpenStack: if CI_INSTALLER_IP is None: click.echo("The environment variable 'INSTALLER_IP' is not" "defined. Please export it") - cmd = ft_constants.REPOS_DIR + \ - ("/releng/utils/fetch_os_creds.sh " - "-d %s -i %s -a %s" - % (OPENSTACK_RC_FILE, CI_INSTALLER_TYPE, CI_INSTALLER_IP)) + cmd = ("%s/releng/utils/fetch_os_creds.sh -d %s -i %s -a %s" + % (ft_constants.REPOS_DIR, + OPENSTACK_RC_FILE, + CI_INSTALLER_TYPE, + CI_INSTALLER_IP)) click.echo("Fetching credentials from installer node '%s' with IP=%s.." % (CI_INSTALLER_TYPE, CI_INSTALLER_IP)) ft_utils.execute_command(cmd, verbose=False) |