diff options
author | Martin Robinson <mrobinson@igalia.com> | 2023-04-10 12:47:39 +0200 |
---|---|---|
committer | Martin Robinson <mrobinson@igalia.com> | 2023-04-10 12:47:39 +0200 |
commit | e9942bddb0dd3ae67403e3ca486bea2e0f4ce954 (patch) | |
tree | 5e202204d4948d7cfd8165e5207657ac3a09c8ba /python/servo/devenv_commands.py | |
parent | 53218621e934f5cb66681b22d3d91c3bbcb0d4bc (diff) | |
download | servo-e9942bddb0dd3ae67403e3ca486bea2e0f4ce954.tar.gz servo-e9942bddb0dd3ae67403e3ca486bea2e0f4ce954.zip |
Replace usage of six.moves.urllib with urllib
Also organize some of the imports. Now that Servo only uses Python 3,
this module is unnecessary. This is part of the gradual migration to
using only Python 3.
Diffstat (limited to 'python/servo/devenv_commands.py')
-rw-r--r-- | python/servo/devenv_commands.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/servo/devenv_commands.py b/python/servo/devenv_commands.py index db44ad2121c..5570aae50b7 100644 --- a/python/servo/devenv_commands.py +++ b/python/servo/devenv_commands.py @@ -11,12 +11,12 @@ from __future__ import print_function, unicode_literals from os import path, listdir, getcwd from time import time +import json import signal +import subprocess import sys import tempfile -import six.moves.urllib as urllib -import json -import subprocess +import urllib from mach.decorators import ( CommandArgument, |