Skip to content

Commit

Permalink
Update parse_dash_results.py for Python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Sep 25, 2017
1 parent de6cc8d commit e1592d2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion scripts/parse_dash_results.py
Expand Up @@ -17,6 +17,10 @@
* *
***************************************************************************
"""
from __future__ import print_function
from future import standard_library
standard_library.install_aliases()
from builtins import range

__author__ = 'Nyall Dawson'
__date__ = 'October 2016'
Expand All @@ -27,7 +31,9 @@
import os
import sys
import argparse
import urllib
import urllib.request
import urllib.parse
import urllib.error
import re
from bs4 import BeautifulSoup
from PyQt5.QtGui import (
Expand Down

0 comments on commit e1592d2

Please sign in to comment.