Merge pull request #1192 from senorflor/fix-error-text

Fix tense of error message
This commit is contained in:
Kevin Sawicki 2015-03-02 12:19:14 -08:00
commit e19c50223b

View file

@ -53,7 +53,7 @@ if (option.file && !option.webdriver) {
dialog.showErrorBox('Error opening app', 'The app provided is not a valid atom-shell app, please read the docs on how to write one:\nhttps://github.com/atom/atom-shell/tree/master/docs');
process.exit(1);
} else {
console.error('App throwed an error when running', e);
console.error('App threw an error when running', e);
throw e;
}
}