diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index 2fcc6796cfc..572bbba75b1 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -1727,6 +1727,7 @@ def run_suite(): if iterArchs or iterCompilers: # Translate ' ' to '-' for pathname component. if six.PY2: + import string tbl = string.maketrans(' ', '-') else: tbl = str.maketrans(' ', '-') |