config: Cast Path to str() before passing it to copy2.

This commit is contained in:
Emmanuel Gil Peyrot 2018-07-21 14:27:29 +02:00
parent c1bc46cb2c
commit 79a4cc8937

View file

@ -560,9 +560,9 @@ def run_cmdline_args():
default = Path(__file__).parent / '..' / 'data' / 'default_config.cfg'
other = Path(pkg_resources.resource_filename('poezio', 'default_config.cfg'))
if default.is_file():
copy2(default, options.filename)
copy2(str(default), str(options.filename))
elif other.is_file():
copy2(other, options.filename)
copy2(str(other), str(options.filename))
# Inside the nixstore and possibly other distributions, the reference
# file is readonly, so is the copy.