Skip to content

Commit e1592d2

Browse files
committed
Update parse_dash_results.py for Python 3
1 parent de6cc8d commit e1592d2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

scripts/parse_dash_results.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
* *
1818
***************************************************************************
1919
"""
20+
from __future__ import print_function
21+
from future import standard_library
22+
standard_library.install_aliases()
23+
from builtins import range
2024

2125
__author__ = 'Nyall Dawson'
2226
__date__ = 'October 2016'
@@ -27,7 +31,9 @@
2731
import os
2832
import sys
2933
import argparse
30-
import urllib
34+
import urllib.request
35+
import urllib.parse
36+
import urllib.error
3137
import re
3238
from bs4 import BeautifulSoup
3339
from PyQt5.QtGui import (

0 commit comments

Comments
 (0)