diff options
-rw-r--r-- | ranger/core/actions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py index 297de576..80eb7fd9 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -752,8 +752,8 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware): original_path = cwd.path one_file = copied_files[0] if overwrite: - cp_flags = ['--backup=numbered', '-af', '--'] - mv_flags = ['--backup=numbered', '-f', '--'] + cp_flags = ['-af', '--'] + mv_flags = ['-f', '--'] else: cp_flags = ['--backup=numbered', '-a', '--'] mv_flags = ['--backup=numbered', '--'] |