diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-11-22 04:28:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-22 04:28:19 +0200 |
commit | d27bad7d6d118cdb5a007d6efd743a8c9d48f683 (patch) | |
tree | 9a471cd5d458ed7b559efd6475d56c2bbab5c13a /run_unittests.py | |
parent | 15bbf1ea7581a8a872296435b28d679c7e42a466 (diff) | |
parent | 5c602b5457bba915ad560f141e9c2b8c9ca1e7ec (diff) | |
download | meson-d27bad7d6d118cdb5a007d6efd743a8c9d48f683.zip meson-d27bad7d6d118cdb5a007d6efd743a8c9d48f683.tar.gz meson-d27bad7d6d118cdb5a007d6efd743a8c9d48f683.tar.bz2 |
Merge pull request #8011 from dcbaker/submit/post-python36-cleanups
Python 3.6 cleanups
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py index d5f7f02..9a3659a 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -40,7 +40,7 @@ from unittest import mock from configparser import ConfigParser from contextlib import contextmanager from glob import glob -from mesonbuild._pathlib import (PurePath, Path) +from pathlib import (PurePath, Path) from distutils.dir_util import copy_tree import typing as T |