From: garciadeblas Date: Tue, 8 Oct 2019 16:47:53 +0000 (+0200) Subject: Client class: updated defaults sol005=True X-Git-Tag: v7.0.0rc1~15 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=341a97a11eb213bc706cdd445c9c85cb814100c3;p=osm%2Fosmclient.git Client class: updated defaults sol005=True Change-Id: If440219c74c4eea9db880aa82e16cd4224723cdb Signed-off-by: garciadeblas --- diff --git a/osmclient/client.py b/osmclient/client.py index 280c0c1..eccfee2 100644 --- a/osmclient/client.py +++ b/osmclient/client.py @@ -23,7 +23,7 @@ from osmclient.v1 import client as client from osmclient.sol005 import client as sol005client -def Client(version=1, host=None, sol005=False, *args, **kwargs): +def Client(version=1, host=None, sol005=True, *args, **kwargs): if not sol005: if version == 1: return client.Client(host, *args, **kwargs)