Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'python/src/tcf/services/filesystem.py')
-rw-r--r--python/src/tcf/services/filesystem.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/src/tcf/services/filesystem.py b/python/src/tcf/services/filesystem.py
index 726b71810..ed52f6d95 100644
--- a/python/src/tcf/services/filesystem.py
+++ b/python/src/tcf/services/filesystem.py
@@ -279,7 +279,7 @@ class FileSystemService(services.Service):
"""
raise NotImplementedError("Abstract methods")
- def read(self, handle, offset, len, done):
+ def read(self, handle, offset, length, done):
"""
Read bytes from an open file.
In response to this request, the server will read as many bytes as it
@@ -295,7 +295,7 @@ class FileSystemService(services.Service):
@param offset is the offset (in bytes) relative
to the beginning of the file from where to start reading.
If offset < 0 then reading starts from current position in the file.
- @param len is the maximum number of bytes to read.
+ @param length is the maximum number of bytes to read.
@param done is call back object.
@return pending command handle.
"""

Back to the top