[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen master] tools/xenmon: Fix xenmon.py for with python3.x
commit 3a59443c1d5ae0677a792c660ccd3796ce036732 Author: Bernhard Kaindl <bernhard.kaindl@xxxxxxxxxx> AuthorDate: Thu Feb 2 18:13:19 2023 +0100 Commit: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> CommitDate: Mon Feb 6 10:22:12 2023 +0000 tools/xenmon: Fix xenmon.py for with python3.x Fixes for Py3: * class Delayed(): file not defined; also an error for pylint -E. Inherit object instead for Py2 compatibility. Fix DomainInfo() too. * Inconsistent use of tabs and spaces for indentation (in one block) Signed-off-by: Bernhard Kaindl <bernhard.kaindl@xxxxxxxxxx> Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- tools/xenmon/xenmon.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/xenmon/xenmon.py b/tools/xenmon/xenmon.py index 175eacd2cb..977ada6887 100644 --- a/tools/xenmon/xenmon.py +++ b/tools/xenmon/xenmon.py @@ -117,7 +117,7 @@ def setup_cmdline_parser(): return parser # encapsulate information about a domain -class DomainInfo: +class DomainInfo(object): def __init__(self): self.allocated_sum = 0 self.gotten_sum = 0 @@ -533,7 +533,7 @@ def show_livestats(cpu): # simple functions to allow initialization of log files without actually # physically creating files that are never used; only on the first real # write does the file get created -class Delayed(file): +class Delayed(object): def __init__(self, filename, mode): self.filename = filename self.saved_mode = mode @@ -677,8 +677,8 @@ def main(): if os.uname()[0] == "SunOS": xenbaked_cmd = "/usr/lib/xenbaked" - stop_cmd = "/usr/bin/pkill -INT -z global xenbaked" - kill_cmd = "/usr/bin/pkill -KILL -z global xenbaked" + stop_cmd = "/usr/bin/pkill -INT -z global xenbaked" + kill_cmd = "/usr/bin/pkill -KILL -z global xenbaked" else: # assumes that xenbaked is in your path xenbaked_cmd = "xenbaked" -- generated by git-patchbot for /home/xen/git/xen.git#master
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |