1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-01-31 02:00:45 +00:00

AndroidTarget: Fix escape_double_quote typo

This commit is contained in:
Valentin Schneider 2018-06-20 17:47:34 +01:00 committed by Marc Bonnici
parent cc04e1a839
commit bda1115adb

View File

@ -1425,7 +1425,7 @@ class AndroidTarget(Target):
def open_url(self, url):
cmd = 'am start -a android.intent.action.VIEW -d "{}"'
self.execute(cmd.format(escape_double_quote(url)))
self.execute(cmd.format(escape_double_quotes(url)))
def homescreen(self):
self.execute('am start -a android.intent.action.MAIN -c android.intent.category.HOME')