diff options
author | Serge Guelton <sguelton@redhat.com> | 2019-03-26 14:46:15 +0000 |
---|---|---|
committer | Serge Guelton <sguelton@redhat.com> | 2019-03-26 14:46:15 +0000 |
commit | 1a12dd70c00a44e34384b1904d18d309ae3c3ac6 (patch) | |
tree | fd786218bf2e1d8894562c909de7b30f08608f02 /lldb/examples/python/gdbremote.py | |
parent | 25f9094d89d01d4fb562ba0edcc2eb63f9e074d7 (diff) | |
download | bcm5719-llvm-1a12dd70c00a44e34384b1904d18d309ae3c3ac6.tar.gz bcm5719-llvm-1a12dd70c00a44e34384b1904d18d309ae3c3ac6.zip |
python 2/3 compat: commands vs subprocess
Differential Revision: https://reviews.llvm.org/D59584
llvm-svn: 356995
Diffstat (limited to 'lldb/examples/python/gdbremote.py')
-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 d9647efe276..dcacbfccdaf 100755 --- a/lldb/examples/python/gdbremote.py +++ b/lldb/examples/python/gdbremote.py @@ -17,7 +17,7 @@ #---------------------------------------------------------------------- import binascii -import commands +import subprocess import json import math import optparse |