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

Unified Diff: mojo/devtools/common/mojo_run

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_run
diff --git a/mojo/devtools/common/mojo_run b/mojo/devtools/common/mojo_run
index f7d30df77c9260e8181b560446db4a0e505af40d..efecd9bf5dd9ff3218e7a01ed9362081d238b762 100755
--- a/mojo/devtools/common/mojo_run
+++ b/mojo/devtools/common/mojo_run
@@ -65,11 +65,11 @@ def main():
_DEFAULT_WINDOW_MANAGER)
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, 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