stdoutdata can be None object
authorS.Çağlar Onur <caglar@cs.princeton.edu>
Fri, 10 Dec 2010 18:11:42 +0000 (13:11 -0500)
committerS.Çağlar Onur <caglar@cs.princeton.edu>
Fri, 10 Dec 2010 18:11:42 +0000 (13:11 -0500)
source/utils.py

index cb1bc4d..4f96fd2 100644 (file)
@@ -148,7 +148,8 @@ def sysexec( cmd, log= None, fsck = False ):
         raise BootManagerException, "Interrupted by user"
 
     if log is not None:
-        log.write(stdoutdata)
+        if stdoutdata is not None:
+            log.write(stdoutdata)
 
     returncode = prog.wait()