diff options
author | Mathew Robinson <chasinglogic@gmail.com> | 2019-06-17 10:30:42 -0400 |
---|---|---|
committer | Mathew Robinson <chasinglogic@gmail.com> | 2019-06-17 10:30:54 -0400 |
commit | ab3cead04fca40e204ad94686fac4896641236f1 (patch) | |
tree | 61f655ffd8ed243d752b78ddc854b8a9b854d5d7 /buildscripts | |
parent | 84c40f61d855f9dc059e4161ad55819c0e113219 (diff) | |
download | mongo-ab3cead04fca40e204ad94686fac4896641236f1.tar.gz |
SERVER-41168 Fixup bad command syntax
Diffstat (limited to 'buildscripts')
-rw-r--r-- | buildscripts/lldb/lldb_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/lldb/lldb_commands.py b/buildscripts/lldb/lldb_commands.py index a957cf83fb0..52d222e6770 100644 --- a/buildscripts/lldb/lldb_commands.py +++ b/buildscripts/lldb/lldb_commands.py @@ -6,7 +6,7 @@ def __lldb_init_module(debugger, dict): ############################ debugger.HandleCommand("command script add -f lldb_commands.PrintGlobalServiceContext mongodb-service-context") debugger.HandleCommand("command script add -f lldb_commands.PrintGlobalServiceContext mongodb-dump-locks") - debugger.HandleCommand("command script alias mongodb-help help") + debugger.HandleCommand("command alias mongodb-help help") ####################### |