Title: [106334] trunk
- Revision
- 106334
- Author
- [email protected]
- Date
- 2012-01-30 22:20:52 -0800 (Mon, 30 Jan 2012)
Log Message
Build fix after r106321.
* Websites/webkit-perf.appspot.com/report_handler.py:
* Websites/webkit-perf.appspot.com/manifest_handler.py:
(ManifestHandler.get):
Modified Paths
Diff
Modified: trunk/ChangeLog (106333 => 106334)
--- trunk/ChangeLog 2012-01-31 05:51:43 UTC (rev 106333)
+++ trunk/ChangeLog 2012-01-31 06:20:52 UTC (rev 106334)
@@ -1,5 +1,13 @@
2012-01-30 Ryosuke Niwa <[email protected]>
+ Build fix after r106321.
+
+ * Websites/webkit-perf.appspot.com/report_handler.py:
+ * Websites/webkit-perf.appspot.com/manifest_handler.py:
+ (ManifestHandler.get):
+
+2012-01-30 Ryosuke Niwa <[email protected]>
+
Python code in webkit-perf.appspot.com uses camelCase
https://bugs.webkit.org/show_bug.cgi?id=77392
Modified: trunk/Websites/webkit-perf.appspot.com/manifest_handler.py (106333 => 106334)
--- trunk/Websites/webkit-perf.appspot.com/manifest_handler.py 2012-01-31 05:51:43 UTC (rev 106333)
+++ trunk/Websites/webkit-perf.appspot.com/manifest_handler.py 2012-01-31 06:20:52 UTC (rev 106334)
@@ -59,12 +59,12 @@
}
for platform_id in platform_ids:
- platform_id_map.setdefault(platformId, {'tests': [], 'branches': []})
+ platform_id_map.setdefault(platform_id, {'tests': [], 'branches': []})
platform_id_map[platform_id]['tests'].append(test.id)
platform_id_map[platform_id]['branches'] += branch_ids
for branch_id in branch_ids:
- branch_id_map.setdefault(branchId, {'tests': [], 'platforms': []})
+ branch_id_map.setdefault(branch_id, {'tests': [], 'platforms': []})
branch_id_map[branch_id]['tests'].append(test.id)
branch_id_map[branch_id]['platforms'] += platform_ids
Modified: trunk/Websites/webkit-perf.appspot.com/report_handler.py (106333 => 106334)
--- trunk/Websites/webkit-perf.appspot.com/report_handler.py 2012-01-31 05:51:43 UTC (rev 106333)
+++ trunk/Websites/webkit-perf.appspot.com/report_handler.py 2012-01-31 06:20:52 UTC (rev 106334)
@@ -165,7 +165,7 @@
return self._output('The build at %s already exists for %s' % (str(timestamp), builder.name))
return Build(branch=branch, platform=platform, builder=builder, buildNumber=build_number,
- timestamp=timestamp, revision=revision, keyName=key_name).put()
+ timestamp=timestamp, revision=revision, key_name=key_name).put()
return db.run_in_transaction(execute)
def _add_test_if_needed(self, test_name, branch, platform):
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes