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

Unified Diff: gsd_generate_index/gsd_generate_index.py

Issue 6711018: Fixing push -> append in indexing script. (Closed) Base URL: svn://chrome-svn/chrome/trunk/tools/
Patch Set: Created 9 years, 9 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: gsd_generate_index/gsd_generate_index.py
===================================================================
--- gsd_generate_index/gsd_generate_index.py (revision 78605)
+++ gsd_generate_index/gsd_generate_index.py (working copy)
@@ -156,7 +156,7 @@
GenerateIndex(d, children, directories, options)
except Exception, e:
mutex.acquire()
- errors.push(e)
+ errors.append(e)
print str(e)
mutex.release()
« 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