From bbe7d26f8f3268a6e1148e295fc07d6119e8eaf4 Mon Sep 17 00:00:00 2001 From: matan Date: Mon, 7 Mar 2022 14:30:13 +0200 Subject: [PATCH] Client: Convert uname to property. --- src/rpcclient/rpcclient/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rpcclient/rpcclient/client.py b/src/rpcclient/rpcclient/client.py index b8953314..703b3a00 100644 --- a/src/rpcclient/rpcclient/client.py +++ b/src/rpcclient/rpcclient/client.py @@ -90,6 +90,7 @@ def info(self): print(f'ppid: {self.symbols.getppid():d}') print(f'progname: {self.symbols.getprogname().peek_str()}') + @property def uname(self): """ get the utsname struct from remote """ raise NotImplementedError()