Bug 874476 - [mozrunner] Tilde character not expanded for application arguments. r=hskupin, r=ahal

--HG--
extra : rebase_source : a9e3a6843b560b2382433efbc294c9174f390870
This commit is contained in:
Fredrik Broman 2014-03-25 22:47:56 +01:00
parent 47d8f404e5
commit b1bd8b4503

View File

@ -306,7 +306,7 @@ class CLI(MozProfileCLI):
def command_args(self):
"""additional arguments for the mozilla application"""
return self.options.appArgs
return map(os.path.expanduser, self.options.appArgs)
def runner_args(self):
"""arguments to instantiate the runner class"""