Index: tools/bots/compiler.py |
diff --git a/tools/bots/compiler.py b/tools/bots/compiler.py |
index a784a03ca7cf27c6848ad828d095c548c26e625e..581d762f32d2130b71e7975d0a5bd475b79f691f 100644 |
--- a/tools/bots/compiler.py |
+++ b/tools/bots/compiler.py |
@@ -143,9 +143,8 @@ def GetBuildInfo(builder_name, is_buildbot): |
if system.startswith('win'): |
system = 'windows' |
- # We have both 10.8 and 10.7 bots, functionality is the same. |
- if system == 'mac10.7' or system == 'mac10.8' or system == 'mac10.9': |
- builder_tag = system.replace('.', '_') |
+ # We have both 10.8 and 10.9 bots, functionality is the same. |
+ if system == 'mac10.8' or system == 'mac10.9': |
system = 'mac' |
if (system == 'windows' and platform.system() != 'Windows') or ( |