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

Unified Diff: tools/bisect-builds.py

Issue 10536022: Fixed index type in GetOfficialBuildsList. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bisect-builds.py
diff --git a/tools/bisect-builds.py b/tools/bisect-builds.py
index 0f4cce802a00278f16c93f01a8d12bff4da2d987..a73978f3ef481fdfd30ddbbab1b8718475295129 100755
--- a/tools/bisect-builds.py
+++ b/tools/bisect-builds.py
@@ -216,8 +216,8 @@ class PathContext(object):
handle.close()
build_numbers = re.findall(r'<a href="([0-9][0-9].*)/">', dirindex)
final_list = []
- start_index = '0'
- end_index = '0'
+ start_index = 0
+ end_index = 0
i = 0
parsed_build_numbers = [LooseVersion(x) for x in build_numbers]
« 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