Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaura Le Padellec2012-06-11 06:44:00 +0000
committerAnton Leherbauer2012-06-11 06:49:14 +0000
commit495ce3633a9473289b8994466e4f9fbd782d13a6 (patch)
treebf33ccc847dcfba4934e5515862768696101a5db /python/src/tcf/services/remote
parent4a48c2a310e70baa011d07fee0b2763d827fbd73 (diff)
downloadorg.eclipse.tcf-495ce3633a9473289b8994466e4f9fbd782d13a6.tar.gz
org.eclipse.tcf-495ce3633a9473289b8994466e4f9fbd782d13a6.tar.xz
org.eclipse.tcf-495ce3633a9473289b8994466e4f9fbd782d13a6.zip
TCF Python: Bug 382099 - FileSystemProxy copy command must remove id
from arguments
Diffstat (limited to 'python/src/tcf/services/remote')
-rw-r--r--python/src/tcf/services/remote/FileSystemProxy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/src/tcf/services/remote/FileSystemProxy.py b/python/src/tcf/services/remote/FileSystemProxy.py
index 37adcccf0..11fdb6a08 100644
--- a/python/src/tcf/services/remote/FileSystemProxy.py
+++ b/python/src/tcf/services/remote/FileSystemProxy.py
@@ -481,7 +481,7 @@ class FileSystemProxy(filesystem.FileSystemService):
class CopyCommand(FileSystemCommand):
def __init__(self):
super(CopyCommand, self).__init__(service, "copy",
- (id, src_path, dst_path, copy_permissions, copy_uidgid))
+ (src_path, dst_path, copy_permissions, copy_uidgid))
def done(self, error, args):
s = None

Back to the top