summaryrefslogtreecommitdiffstats
path: root/ppapi
diff options
context:
space:
mode:
authornoelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-27 17:03:52 +0000
committernoelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-27 17:03:52 +0000
commitd6afb5834250a0a2be3662ac43f541115ca729e0 (patch)
treedb87b6dea8b8cf8161fd3b06181d02a8588c5880 /ppapi
parentbe33f8aefab94b842dcea4ad5dc3576c131c928b (diff)
downloadchromium_src-d6afb5834250a0a2be3662ac43f541115ca729e0.zip
chromium_src-d6afb5834250a0a2be3662ac43f541115ca729e0.tar.gz
chromium_src-d6afb5834250a0a2be3662ac43f541115ca729e0.tar.bz2
Trivial fix for error message
Error message incorrectly used ',' instead of '%' for string replacement arguments, causing an exception. BUG= none TEST= none TBR= sehr@google.com Review URL: http://codereview.chromium.org/7461120 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@94309 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r--ppapi/generators/idl_lint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/generators/idl_lint.py b/ppapi/generators/idl_lint.py
index c6ef89e..3f06902 100644
--- a/ppapi/generators/idl_lint.py
+++ b/ppapi/generators/idl_lint.py
@@ -111,7 +111,7 @@ def Lint(ast):
for filenode in ast.GetListOf('File'):
name = filenode.GetProperty('NAME')
if filenode.GetProperty('ERRORS') > 0:
- ErrOut.Log('%s : Skipped due to errors.', name)
+ ErrOut.Log('%s : Skipped due to errors.' % name)
skipList.append(filenode)
continue
warnings = IDLLinter().Visit(filenode, 0)