Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorLaura Le Padellec2012-06-11 06:44:00 +0000
committerAnton Leherbauer2012-06-11 06:44:00 +0000
commit8d34fe15cb5306b29cd11b703c7a9501da7ef7f9 (patch)
treec5778b40ff68fcd86be3d0281536af2d8ce14f93 /python
parentb89b1f2cfd1fc9396aa34b4f0309dbf0545edec5 (diff)
downloadorg.eclipse.tcf-8d34fe15cb5306b29cd11b703c7a9501da7ef7f9.tar.gz
org.eclipse.tcf-8d34fe15cb5306b29cd11b703c7a9501da7ef7f9.tar.xz
org.eclipse.tcf-8d34fe15cb5306b29cd11b703c7a9501da7ef7f9.zip
TCF Python: Bug 382099 - FileSystemProxy copy command must remove id
from arguments
Diffstat (limited to 'python')
-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