From b7c9f4588d17aa8fd11e0855eae581c4d27c1c22 Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Mon, 20 Feb 2017 14:18:04 +0100 Subject: [PATCH] copy.py: Dont hardcode home. --- copy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/copy.py b/copy.py index 56c7f50..3ee5851 100755 --- a/copy.py +++ b/copy.py @@ -33,7 +33,7 @@ def maybe_copy_dir(src, dest, common): maybe_copy_dir(join(src, missmatch), join(dest, missmatch), listdir(join(src, missmatch))) else: - maybe_copy_file(missmatch, join(expanduser('~/'), missmatch)) + maybe_copy_file(missmatch, join(dest, missmatch)) def parse_args():