diff options
author | Yaroslav Brustinov <ybrustin@cisco.com> | 2017-01-01 02:27:43 +0200 |
---|---|---|
committer | Yaroslav Brustinov <ybrustin@cisco.com> | 2017-01-01 02:27:43 +0200 |
commit | f819379b4a6c08270651b381118f0282c4163792 (patch) | |
tree | 9159537905e7cf9b46b832e49a756526200f9427 /doc | |
parent | 1eee1f314620f348a906f4813ab880a48823f685 (diff) |
docs rsync: fix formatting error string
Change-Id: I44a96bc220b4281b50cefc35bf9114f62d6ff10a
Signed-off-by: Yaroslav Brustinov <ybrustin@cisco.com>
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/ws_main.py | 4 |
1 files changed, 2 insertions, 2 deletions
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): |