| author | Laura Le Padellec | 2012-06-11 02:44:00 (EDT) |
|---|---|---|
| committer | Anton Leherbauer | 2012-06-11 02:49:14 (EDT) |
| commit | 495ce3633a9473289b8994466e4f9fbd782d13a6 (patch) (side-by-side diff) | |
| tree | bf33ccc847dcfba4934e5515862768696101a5db | |
| parent | 4a48c2a310e70baa011d07fee0b2763d827fbd73 (diff) | |
| download | org.eclipse.tcf-495ce3633a9473289b8994466e4f9fbd782d13a6.zip org.eclipse.tcf-495ce3633a9473289b8994466e4f9fbd782d13a6.tar.gz org.eclipse.tcf-495ce3633a9473289b8994466e4f9fbd782d13a6.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 |

