Remove unnecessary references to fullclassname after removal of v1 client
[osm/osmclient.git] / osmclient / cli_commands / utils.py
index 5ac9931..9ec03f6 100755 (executable)
@@ -44,14 +44,11 @@ def check_client_version(obj, what, version="sol005"):
     :raises ClientError: if the specified version does not match the client version
     """
     logger.debug("")
+    if version == "sol005":
+        message = f"The following commands or options are only supported with the version v1 of OSM SOL005': {what}"
+    elif version == "sol005_v2":
+        message = f"The following commands or options are only supported with the version v2 of OSM SOL005': {what}"
     fullclassname = obj.__module__ + "." + obj.__class__.__name__
-    message = 'The following commands or options are only supported with the option "--sol005": {}'.format(
-        what
-    )
-    if version == "v1":
-        message = 'The following commands or options are not supported when using option "--sol005": {}'.format(
-            what
-        )
     if fullclassname != "osmclient.{}.client.Client".format(version):
         raise ClientException(message)
     return