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

Unified Diff: lib/dom/scripts/dartdomgenerator.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 | « no previous file | lib/dom/scripts/idlparser.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/scripts/dartdomgenerator.py
diff --git a/lib/dom/scripts/dartdomgenerator.py b/lib/dom/scripts/dartdomgenerator.py
index 3ae7bff08edee04ee4176af7625fde0bc777150e..619bce7d4e3e39bf94fb5b69bcceba2bb2a66c63 100755
--- a/lib/dom/scripts/dartdomgenerator.py
+++ b/lib/dom/scripts/dartdomgenerator.py
@@ -116,19 +116,19 @@ def GenerateSingleFile(systems):
_logger.info('Copy dom_frog to frog/')
subprocess.call(['cd ../generated ; '
'../../../tools/copy_dart.py ../frog dom_frog.dart'],
- shell=True);
+ shell=True)
if 'htmlfrog' in systems:
_logger.info('Copy html_frog to ../html/frog/')
subprocess.call(['cd ../../html/generated ; '
'../../../tools/copy_dart.py ../frog html_frog.dart'],
- shell=True);
+ shell=True)
if 'htmldartium' in systems:
_logger.info('Copy html_dartium to ../html/dartium/')
subprocess.call(['cd ../../html/generated ; '
'../../../tools/copy_dart.py ../dartium html_dartium.dart'],
- shell=True);
+ shell=True)
# Copy dummy DOM where dartc build expects it.
if 'dummy' in systems:
@@ -136,7 +136,7 @@ def GenerateSingleFile(systems):
subprocess.call(['cd ../generated ; '
'../../../tools/copy_dart.py dummy dom_dummy.dart ;'
'cp dummy/dom_dummy.dart ../dom.dart'],
- shell=True);
+ shell=True)
def main():
parser = optparse.OptionParser()
« no previous file with comments | « no previous file | lib/dom/scripts/idlparser.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698