about summary refs log tree commit diff stats
path: root/ranger/core/actions.py
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-10-23 02:07:00 +0200
committerhut <hut@lavabit.com>2010-10-23 02:07:00 +0200
commit0a11320336829b876da5cb52c6b1e286681360d0 (patch)
tree8d4f72c6c0d22da692f8fb019c5c470b5ed1f9e0 /ranger/core/actions.py
parentfe7f8ca0d2d3946f22a29d357086281e95185591 (diff)
downloadranger-0a11320336829b876da5cb52c6b1e286681360d0.tar.gz
Fixed "po" binding
Diffstat (limited to 'ranger/core/actions.py')
-rw-r--r--ranger/core/actions.py4
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', '--']