From d26e1c1a1429eaff29be889da4d7ac317a1006f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20Sl=C3=A5en?= Date: Thu, 20 Nov 2025 02:32:54 +0100 Subject: [PATCH] Update python-hello-world.py Optimized for python3 --- python-hello-world.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-hello-world.py b/python-hello-world.py index cb2e733..60227ba 100644 --- a/python-hello-world.py +++ b/python-hello-world.py @@ -18,7 +18,7 @@ def connect(host, port, user, password, source): rpc = new_ele('get-system-information') result = conn.rpc(rpc) - print result + print(result) if __name__ == '__main__': connect('X.X.X.X', 22, 'username', 'password', 'candidate')