Merge "Fix output of supported api versions"
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user