the big merge
[nepi.git] / src / nepi / resources / linux / node.py
index a411c64..375ff3a 100644 (file)
@@ -32,6 +32,8 @@ import time
 import threading
 import traceback
 
+from six import PY3
+
 # TODO: Unify delays!!
 # TODO: Validate outcome of uploads!! 
 
@@ -1194,5 +1196,7 @@ class LinuxNode(ResourceManager):
         if not dests:
             return []
 
-        return dests.values()
+        retcod = dests.values()
+        if PY3: retcod = list(retcod)
+        return retcod