diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-11-20 14:56:29 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2020-11-20 15:08:40 -0800 |
commit | f6672c7a1923c3e052af3ad223d6075b86378bfc (patch) | |
tree | 2f5a00744c247fa37044cb2a584cc6defa68cf50 /run_meson_command_tests.py | |
parent | cef406b3a5d502cde58cdad9fc9b978efb413327 (diff) | |
download | meson-f6672c7a1923c3e052af3ad223d6075b86378bfc.zip meson-f6672c7a1923c3e052af3ad223d6075b86378bfc.tar.gz meson-f6672c7a1923c3e052af3ad223d6075b86378bfc.tar.bz2 |
use real pathlib module
We added the _pathlib module to work around defeciencies in python 3.5's
implementation, since we now rely on 3.6 lets drop this
Diffstat (limited to 'run_meson_command_tests.py')
-rwxr-xr-x | run_meson_command_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_meson_command_tests.py b/run_meson_command_tests.py index 1375988..7bc6185 100755 --- a/run_meson_command_tests.py +++ b/run_meson_command_tests.py @@ -19,7 +19,7 @@ import tempfile import unittest import subprocess import zipapp -from mesonbuild._pathlib import Path +from pathlib import Path from mesonbuild.mesonlib import windows_proof_rmtree, python_command, is_windows from mesonbuild.coredata import version as meson_version |