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

Unified Diff: lib/dom/scripts/idlparser.py

Issue 10692066: Remove unnecessary semicolons from Python code. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 | « lib/dom/scripts/dartdomgenerator.py ('k') | lib/dom/scripts/systembase.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/scripts/idlparser.py
diff --git a/lib/dom/scripts/idlparser.py b/lib/dom/scripts/idlparser.py
index 8e9c738523bfc7c1d97755a1dee67d169d3860be..4267e74adda34ef29773713c2fae175417a85572 100755
--- a/lib/dom/scripts/idlparser.py
+++ b/lib/dom/scripts/idlparser.py
@@ -408,7 +408,7 @@ class IDLParser(object):
"""
# FIXME: Handle gcc not found, or any other processing errors
gcc = 'gcc'
- cmd = [gcc, '-E', '-P', '-C', '-x', 'c++'];
+ cmd = [gcc, '-E', '-P', '-C', '-x', 'c++']
for define in defines:
cmd.append('-D%s' % define)
cmd.append('-')
« no previous file with comments | « lib/dom/scripts/dartdomgenerator.py ('k') | lib/dom/scripts/systembase.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698