diff --git a/saharaclient/client.py b/saharaclient/client.py index 75e47163..d595c897 100644 --- a/saharaclient/client.py +++ b/saharaclient/client.py @@ -33,7 +33,7 @@ def get_client_class(version): try: client_path = version_map[str(version)] except (KeyError, ValueError): - supported_versions = ''.join(version_map.keys()) + supported_versions = ', '.join(version_map.keys()) msg = ("Invalid client version '%(version)s'; must be one of: " "%(versions)s") % {'version': version, 'versions': supported_versions}