From 6110144a3ba06419bbd0ca9023de8ac491b1a621 Mon Sep 17 00:00:00 2001 From: arvidn Date: Wed, 18 Dec 2019 23:57:46 +0100 Subject: [PATCH] fix python example client to not use deprecated functions --- bindings/python/simple_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/simple_client.py b/bindings/python/simple_client.py index fb6fdea48..ad02028f6 100755 --- a/bindings/python/simple_client.py +++ b/bindings/python/simple_client.py @@ -31,4 +31,4 @@ while (not s.is_seeding): time.sleep(1) -print(h.name(), 'complete') +print(h.status().name, 'complete')