From a77ddba607bf941a5fe597bf290d546cce8d12a5 Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Tue, 14 Mar 2017 15:43:28 -0700 Subject: [PATCH] code check --- mininet/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mininet/node.py b/mininet/node.py index 184fa75..b0ad36d 100644 --- a/mininet/node.py +++ b/mininet/node.py @@ -695,7 +695,7 @@ class CPULimitedHost( Host ): _out, _err, exitcode = errRun( 'cgdelete -r ' + self.cgroup ) # Sometimes cgdelete returns a resource busy error but still # deletes the group; next attempt will give "no such file" - return exitcode == 0 or ( 'no such file' in _err.lower() ) + return exitcode == 0 or ( 'no such file' in _err.lower() ) def popen( self, *args, **kwargs ): """Return a Popen() object in node's namespace