зеркало из https://github.com/mozilla/gecko-dev.git
Bug 805635: making sure we close the file on import_script; r=mdas
This commit is contained in:
Родитель
af30dc2b46
Коммит
37b7d7dbc2
|
@ -456,9 +456,10 @@ class Marionette(object):
|
|||
def get_perf_data(self):
|
||||
return self._send_message('getPerfData', 'value')
|
||||
|
||||
def import_script(self, file):
|
||||
f = open(file, "r")
|
||||
js = f.read()
|
||||
def import_script(self, js_file):
|
||||
js = ''
|
||||
with open(js_file, 'r') as f:
|
||||
js = f.read()
|
||||
return self._send_message('importScript', 'ok', script=js)
|
||||
|
||||
@property
|
||||
|
|
Загрузка…
Ссылка в новой задаче