Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'python/src/tcf/services/pathmap.py')
-rw-r--r--python/src/tcf/services/pathmap.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/src/tcf/services/pathmap.py b/python/src/tcf/services/pathmap.py
index fd5cb3704..c232f15ef 100644
--- a/python/src/tcf/services/pathmap.py
+++ b/python/src/tcf/services/pathmap.py
@@ -135,7 +135,7 @@ class DoneGet(object):
def doneGet(self, token, error, map):
"""
Called when file path mapping retrieval is done.
- @param error - error description if operation failed, null if succeeded.
+ @param error - error description if operation failed, None if succeeded.
@param map - file path mapping data.
"""
pass
@@ -147,7 +147,7 @@ class DoneSet(object):
def doneSet(self, token, error):
"""
Called when file path mapping transmission is done.
- @param error - error description if operation failed, null if succeeded.
+ @param error - error description if operation failed, None if succeeded.
@param map - memory map data.
"""
pass

Back to the top