interpreter: fix bad-continuation

Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
This commit is contained in:
Igor Gnatenko 2015-06-19 10:24:49 +03:00
parent c74a72a6a1
commit 7599140321
1 changed files with 11 additions and 12 deletions

View File

@ -494,8 +494,7 @@ class SubprojectHolder(InterpreterObject):
def __init__(self, subinterpreter):
super().__init__()
self.subinterpreter = subinterpreter
self.methods.update({
'get_variable' : self.get_variable_method,
self.methods.update({'get_variable' : self.get_variable_method,
})
def get_variable_method(self, args, kwargs):