diff options
Diffstat (limited to 'python/servo/bootstrap_commands.py')
-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 fbc02afb61a..835c7bf21c2 100644 --- a/python/servo/bootstrap_commands.py +++ b/python/servo/bootstrap_commands.py @@ -244,7 +244,7 @@ class MachCommands(CommandBase): with open(path.join(preload_path, preload_filename), 'w') as fd: json.dump(entries, fd, indent=4) - except ValueError, e: + except ValueError as e: print("Unable to parse chromium HSTS preload list, has the format changed?") sys.exit(1) |