[Pkg-uml-commit] r234 - trunk/src/rootstrap

Mattia Dongili malattia at costa.debian.org
Sun Oct 8 09:30:52 UTC 2006


Author: malattia
Date: 2006-10-08 09:30:51 +0000 (Sun, 08 Oct 2006)
New Revision: 234

Modified:
   trunk/src/rootstrap/builder
Log:
fix wording

Modified: trunk/src/rootstrap/builder
===================================================================
--- trunk/src/rootstrap/builder	2006-10-08 08:11:22 UTC (rev 233)
+++ trunk/src/rootstrap/builder	2006-10-08 09:30:51 UTC (rev 234)
@@ -54,16 +54,16 @@
 
                 if status != 0:
 	            if "debug" in vars and vars["debug"] == "true":
-			print "Module %s failed with status %s (%d)" % \
-					(module,os.strerror(status),status)
+			    print "Module %s failed with status %d: %s" % \
+					(module,status,os.strerror(status))
 	                debug_exit = os.spawnle(os.P_WAIT, "/bin/sh", "/bin/sh", vars)
 			if debug_exit == 1:
 			    continue
 			elif debug_exit == 2:
 			    return
 
-                        raise "rootstrap: Module '%s' failed, status: %s (%d)" % \
-					(module,os.strerror(status),status)
+		        raise "rootstrap: Module '%s' failed, status %d: %s" % \
+					(module,status,os.strerror(status))
 		return
 
     raise "rootstrap: unknown module: %s\n" % module




More information about the Pkg-uml-commit mailing list