From 79a4cc8937d318f55d87549a2d2e020cbb5f5920 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sat, 21 Jul 2018 14:27:29 +0200 Subject: config: Cast Path to str() before passing it to copy2. --- poezio/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'poezio/config.py') 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. -- cgit v1.2.3