From 341a97a11eb213bc706cdd445c9c85cb814100c3 Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Tue, 8 Oct 2019 18:47:53 +0200 Subject: [PATCH] Client class: updated defaults sol005=True Change-Id: If440219c74c4eea9db880aa82e16cd4224723cdb Signed-off-by: garciadeblas --- osmclient/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.17.1