diff options
-rw-r--r-- | python/servo/bootstrap_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/bootstrap_commands.py b/python/servo/bootstrap_commands.py index da182198ac4..a798184ebdd 100644 --- a/python/servo/bootstrap_commands.py +++ b/python/servo/bootstrap_commands.py @@ -321,7 +321,7 @@ class MachCommands(CommandBase): ) stdout, _ = cmd.communicate() for line in stdout.splitlines(): - if line.startswith("+") and not line.startswith("+++"): + if line.startswith(b"+") and not line.startswith(b"+++"): to_keep[tool].add(line[1:]) removing_anything = False |