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

Unified Diff: chrome/common/extensions/docs/build/build.py

Issue 343052: Improve error messages in extensions/docs/build.py . (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/build/build.py
===================================================================
--- chrome/common/extensions/docs/build/build.py (revision 30409)
+++ chrome/common/extensions/docs/build/build.py (working copy)
@@ -130,10 +130,20 @@
"To specify a path to test_shell use --test-shell-path")
def GetAPIModuleNames():
- contents = open(_extension_api_json, 'r').read();
- extension_api = json.loads(contents, encoding="ASCII")
- return set( module['namespace'].encode() for module in extension_api)
+ try:
+ contents = open(_extension_api_json, 'r').read()
+ except IOError, msg:
+ raise Exception("Failed to read the file that defines the extensions API. "
+ "The specific error was: %s." % msg)
+ try:
+ extension_api = json.loads(contents, encoding="ASCII")
+ except ValueError, msg:
+ raise Exception("File %s has a syntax error: %s" %
+ (_extension_api_json, msg))
+
+ return set(module['namespace'].encode() for module in extension_api)
+
def GetStaticFileNames():
static_files = os.listdir(_static_dir)
return set(os.path.splitext(file)[0]
Property changes on: chrome/common/extensions/docs/build/build.py
___________________________________________________________________
Name: svn:eol-style
+ LF
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698