fixed 2 bugs/typos found through testing
[nepi.git] / src / nepi / util / sshfuncs.py
index 20e0007..421c9b4 100644 (file)
@@ -555,7 +555,7 @@ def rgetpid(pidfile,
     
     if out:
         try:
-            return [ int(x) for x in out.strip().split(' ',1)) ]
+            return [ int(x) for x in out.strip().split(' ', 1) ]
         except:
             # Ignore, many ways to fail that don't matter that much
             return None