aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/bench_pictures_cfg_helper.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/bench_pictures_cfg_helper.py b/tools/bench_pictures_cfg_helper.py
index 65d63a45b2..178ecd3d57 100644
--- a/tools/bench_pictures_cfg_helper.py
+++ b/tools/bench_pictures_cfg_helper.py
@@ -15,8 +15,7 @@ def Config(**kwargs):
def TileArgs(tile_x, tile_y):
return {'mode': ['tile', str(tile_x), str(tile_y)],
- # TODO(borenet): Turn this back on once the parser is working.
- #'timeIndividualTiles': True
+ 'timeIndividualTiles': True,
}
@@ -102,4 +101,4 @@ def PlaybackCreationGridConfig(tile_x, tile_y, **kwargs):
def TileGridConfig(tile_x, tile_y, **kwargs):
return GridConfig(tile_x, tile_y,
- **dict(TileArgs(tile_x, tile_y).items() + kwargs.items())) \ No newline at end of file
+ **dict(TileArgs(tile_x, tile_y).items() + kwargs.items()))