Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'python/src/tcf/services/remote/LineNumbersProxy.py')
-rw-r--r--python/src/tcf/services/remote/LineNumbersProxy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/src/tcf/services/remote/LineNumbersProxy.py b/python/src/tcf/services/remote/LineNumbersProxy.py
index 32211ddf2..ad567d225 100644
--- a/python/src/tcf/services/remote/LineNumbersProxy.py
+++ b/python/src/tcf/services/remote/LineNumbersProxy.py
@@ -22,7 +22,7 @@ class LineNumbersProxy(linenumbers.LineNumbersService):
service = self
class MapCommand(Command):
def __init__(self):
- super(MapCommand, self).__init__(service.channel, service,
+ super(MapCommand, self).__init__(service.channel, service,
"mapToSource", (context_id, start_address, end_address))
def done(self, error, args):
arr = None
@@ -38,7 +38,7 @@ class LineNumbersProxy(linenumbers.LineNumbersService):
service = self
class MapCommand(Command):
def __init__(self):
- super(MapCommand, self).__init__(service.channel, service,
+ super(MapCommand, self).__init__(service.channel, service,
"mapToMemory", (context_id, file, line, column))
def done(self, error, args):
arr = None

Back to the top