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

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: Address Ben's comments. 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 1457fb2d712a3fc9bb51b57a6911bc6316e3f7d1..554eeabb90958991f40688c6fefce6611069e6af 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