syntax errors
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Sun, 12 Jan 2014 23:08:16 +0000 (00:08 +0100)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Sun, 12 Jan 2014 23:08:16 +0000 (00:08 +0100)
cgroups.py

index 1f0d889..bbb74a3 100644 (file)
@@ -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."""