Skip to content

cerbero: Fix TypeError on older Python versions

Nirbheek Chauhan requested to merge nirbheek/cerbero:fix-pathlib-open into master

open() does not accept pathlib.Path objects in Python 3.5. Use the .open() method instead which works on all supported Python versions. Fixes:

TypeError: invalid file: PosixPath('[...]/README-LICENSE-INFO.txt')

Merge request reports