зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
7c920d7905
Коммит
5046dc5402
|
@ -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)
|
||||
|
|
Загрузка…
Ссылка в новой задаче