Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(541)

Unified Diff: mojo/devtools/common/mojo_test

Issue 1259793008: Support dev servers defined in a mojoconfig file. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: mojo/devtools/common/mojo_test
diff --git a/mojo/devtools/common/mojo_test b/mojo/devtools/common/mojo_test
index e2100dd1a11ce357794bc9907c06603954a03bf3..2cf84b9ba26e9849bc2a14dcbe0f0b74489086b1 100755
--- a/mojo/devtools/common/mojo_test
+++ b/mojo/devtools/common/mojo_test
@@ -59,11 +59,11 @@ def main():
shell_config.add_shell_arguments(parser)
script_args, shell_args = parser.parse_known_args()
- config = shell_config.get_shell_config(script_args)
try:
+ config = shell_config.get_shell_config(script_args)
shell, common_shell_args = shell_arguments.get_shell(config, shell_args)
- except shell_arguments.ShellConfigurationException as e:
+ except shell_config.ShellConfigurationException as e:
print e
return 1

Powered by Google App Engine
This is Rietveld 408576698