Bug 1594589 - Typo in raptor.py - missing space in-between firefoxor conditional. r=perftest-reviewers,sparky

Differential Revision: https://phabricator.services.mozilla.com/D52234

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Stephen Donner 2019-11-08 14:17:33 +00:00
Родитель b257252e66
Коммит 37b8ad38ec
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1694,7 +1694,7 @@ def main(args=sys.argv[1:]):
value = outer_kwargs.pop(key)
inner_kwargs[key] = value
if args.app == "firefox"or args.app in CHROMIUM_DISTROS:
if args.app == "firefox" or args.app in CHROMIUM_DISTROS:
klass = BrowsertimeDesktop
else:
klass = BrowsertimeAndroid