diff options
-rw-r--r-- | poezio/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/poezio/config.py b/poezio/config.py index e82aa190..5153b0d0 100644 --- a/poezio/config.py +++ b/poezio/config.py @@ -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. |