summaryrefslogtreecommitdiff
path: root/tests/fixtureapps/getline.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fixtureapps/getline.py')
-rw-r--r--tests/fixtureapps/getline.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fixtureapps/getline.py b/tests/fixtureapps/getline.py
index 5e0ad3a..bb5b39c 100644
--- a/tests/fixtureapps/getline.py
+++ b/tests/fixtureapps/getline.py
@@ -2,9 +2,9 @@ import sys
if __name__ == "__main__":
try:
- from urllib.request import urlopen, URLError
+ from urllib.request import URLError, urlopen
except ImportError:
- from urllib2 import urlopen, URLError
+ from urllib2 import URLError, urlopen
url = sys.argv[1]
headers = {"Content-Type": "text/plain; charset=utf-8"}