From: Thierry Parmentelat Date: Sun, 12 Jan 2014 23:08:16 +0000 (+0100) Subject: syntax errors X-Git-Tag: nodemanager-5.2-10~18 X-Git-Url: http://git.onelab.eu/?p=nodemanager.git;a=commitdiff_plain;h=dde04827b57a583c8918129c1afae9bffd908c60 syntax errors --- 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."""