aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/bootstrap.py
diff options
context:
space:
mode:
authorMartin Robinson <mrobinson@igalia.com>2023-04-10 12:47:39 +0200
committerMartin Robinson <mrobinson@igalia.com>2023-04-10 12:47:39 +0200
commite9942bddb0dd3ae67403e3ca486bea2e0f4ce954 (patch)
tree5e202204d4948d7cfd8165e5207657ac3a09c8ba /python/servo/bootstrap.py
parent53218621e934f5cb66681b22d3d91c3bbcb0d4bc (diff)
downloadservo-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/bootstrap.py')
-rw-r--r--python/servo/bootstrap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/bootstrap.py b/python/servo/bootstrap.py
index c83adc24897..1acef6e3d72 100644
--- a/python/servo/bootstrap.py
+++ b/python/servo/bootstrap.py
@@ -10,7 +10,7 @@ import os
import distro
import subprocess
import six
-import six.moves.urllib as urllib
+import urllib
from subprocess import PIPE
from zipfile import BadZipfile