docs rsync: fix formatting error string 38/5338/1
authorYaroslav Brustinov <[email protected]>
Sun, 1 Jan 2017 00:27:43 +0000 (02:27 +0200)
committerYaroslav Brustinov <[email protected]>
Sun, 1 Jan 2017 00:27:43 +0000 (02:27 +0200)
Change-Id: I44a96bc220b4281b50cefc35bf9114f62d6ff10a
Signed-off-by: Yaroslav Brustinov <[email protected]>
doc/ws_main.py

index a88452b..4b972a4 100755 (executable)
@@ -1088,7 +1088,7 @@ def rsync_int(bld, src, dst):
            dst = dst)
     ret = os.system(cmd)
     if ret:
-        bld.fatal("cmd '%s' exited with return status" % (cmd, ret))
+        bld.fatal("cmd '%s' exited with return status: %s" % (cmd, ret))
 
 
 def rsync_ext(bld, src, dst):
@@ -1101,7 +1101,7 @@ def rsync_ext(bld, src, dst):
            dst  = dst)
     ret = os.system(cmd)
     if ret:
-        bld.fatal("cmd '%s' exited with return status" % (cmd, ret))
+        bld.fatal("cmd '%s' exited with return status: %s" % (cmd, ret))
 
 
 def publish(bld):