diff options
author | Pavel Labath <labath@google.com> | 2015-07-28 15:13:23 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2015-07-28 15:13:23 +0000 |
commit | 4b7dc299c20205c68e39f5c9c51d6568700ee57e (patch) | |
tree | 21fc8067c80cfa6e1c29261f81ca7d4d0e538812 /lldb/examples/python | |
parent | 922452285a55a4ede44f6cd4ffa745ee4ecb9ccb (diff) | |
download | bcm5719-llvm-4b7dc299c20205c68e39f5c9c51d6568700ee57e.tar.gz bcm5719-llvm-4b7dc299c20205c68e39f5c9c51d6568700ee57e.zip |
Fix typo in gdbremote.py
llvm-svn: 243421
Diffstat (limited to 'lldb/examples/python')
-rwxr-xr-x | lldb/examples/python/gdbremote.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/examples/python/gdbremote.py b/lldb/examples/python/gdbremote.py index 1832715b0e5..4cbfdb2ba33 100755 --- a/lldb/examples/python/gdbremote.py +++ b/lldb/examples/python/gdbremote.py @@ -203,7 +203,7 @@ def start_gdb_log(debugger, command, result, dict): return if g_log_file: - result.PutCString ('error: logging is already in progress with file "%s"', g_log_file) + result.PutCString ('error: logging is already in progress with file "%s"' % g_log_file) else: args_len = len(args) if args_len == 0: |