From dde04827b57a583c8918129c1afae9bffd908c60 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Mon, 13 Jan 2014 00:08:16 +0100 Subject: [PATCH] syntax errors --- cgroups.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cgroups.py b/cgroups.py index 1f0d889..bbb74a3 100644 --- a/cgroups.py +++ b/cgroups.py @@ -60,11 +60,11 @@ def get_cgroup_paths(subsystem="cpuset"): # try several locations and return all the results # get_cgroup_path will sort it out def merge(l1,l2): return l1+l2 - return reduce (lambda l1,l2: return l1+l2, + return reduce (lambda l1,l2: l1+l2, [ [ dir for dir in [ os.path.join(cpusetBase, f) for f in os.listdir(cpusetBase) ] if os.path.isdir(dir) ] - for cpusetBase in cpusetBases if os.path.isdir (cpusetBase) ] + for cpusetBase in cpusetBases if os.path.isdir (cpusetBase) ]) def get_cgroup_path(name, subsystem="cpuset"): """ Returns the base path for the cgroup with a specific name or None.""" -- 2.43.0