From: Yaroslav Brustinov Date: Sun, 1 Jan 2017 00:27:43 +0000 (+0200) Subject: docs rsync: fix formatting error string X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=f819379b4a6c08270651b381118f0282c4163792;p=trex.git docs rsync: fix formatting error string Change-Id: I44a96bc220b4281b50cefc35bf9114f62d6ff10a Signed-off-by: Yaroslav Brustinov --- diff --git a/doc/ws_main.py b/doc/ws_main.py index a88452b3..4b972a43 100755 --- a/doc/ws_main.py +++ b/doc/ws_main.py @@ -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):