Add missing space in error string

Reviewed-By: Rob Crittenden <rcritten@redhat.com>
This commit is contained in:
Fraser Tweedale 2018-05-30 14:29:08 +10:00 committed by Rob Crittenden
parent cf25823e99
commit 816daf9355

View File

@ -564,7 +564,7 @@ def check_remote_version(client, local_version):
remote_version = parse_version(env['version'])
if remote_version > local_version:
raise ScriptError(
"Cannot install replica of a server of higher version ({}) than"
"Cannot install replica of a server of higher version ({}) than "
"the local version ({})".format(remote_version, local_version))