Bug 1536179 - cast the PosixPath to a string r=jgilbert

Changes:

Silence the `os.chdir` posixpath error when run in python3.

Differential Revision: https://phabricator.services.mozilla.com/D59254

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Edwin Takahashi 2020-01-09 18:25:11 +00:00
Родитель 7c920d7905
Коммит 5046dc5402
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -539,7 +539,7 @@ def GetFilePathListForDir(baseDir):
if __name__ == '__main__':
file_dir = Path(__file__).parent
os.chdir(file_dir)
os.chdir(str(file_dir))
testEntryList = GetTestList()
wrapperPathStrList = WriteWrappers(testEntryList)