| author | Laura Le Padellec | 2012-06-11 02:44:00 (EDT) |
|---|---|---|
| committer | Anton Leherbauer | 2012-06-11 02:44:00 (EDT) |
| commit | 8d34fe15cb5306b29cd11b703c7a9501da7ef7f9 (patch) (side-by-side diff) | |
| tree | c5778b40ff68fcd86be3d0281536af2d8ce14f93 | |
| parent | b89b1f2cfd1fc9396aa34b4f0309dbf0545edec5 (diff) | |
| download | org.eclipse.tcf-8d34fe15cb5306b29cd11b703c7a9501da7ef7f9.zip org.eclipse.tcf-8d34fe15cb5306b29cd11b703c7a9501da7ef7f9.tar.gz org.eclipse.tcf-8d34fe15cb5306b29cd11b703c7a9501da7ef7f9.tar.bz2 | |
TCF Python: Bug 382099 - FileSystemProxy copy command must remove id
from arguments
| -rw-r--r-- | python/src/tcf/services/remote/FileSystemProxy.py | 2 |
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 37adccc..11fdb6a 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 |

