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

Unified Diff: dart/tools/build.py

Issue 13945021: Merge revision 21306 to trunk. This fixes an issue with xcode output parsing on 10.6 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 8 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 | « dart/tools/VERSION ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/build.py
===================================================================
--- dart/tools/build.py (revision 21336)
+++ dart/tools/build.py (working copy)
@@ -273,6 +273,8 @@
is_fancy_tty = True
except subprocess.CalledProcessError:
is_fancy_tty = False
+ except AttributeError:
+ is_fancy_tty = False
for line in unbuffered(process.stdout.readline):
line = line.rstrip()
if line.startswith('=== BUILD ') or line.startswith('** BUILD '):
« no previous file with comments | « dart/tools/VERSION ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698