From 46990513a0528eee0561fa7cee2f591c9f81bb96 Mon Sep 17 00:00:00 2001 From: daniel-Jones Date: Wed, 31 Jan 2018 09:15:08 +1030 Subject: fixed missing ;'s --- urlopen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/urlopen.py b/urlopen.py index 21bd78c..1e70844 100755 --- a/urlopen.py +++ b/urlopen.py @@ -15,8 +15,8 @@ def main(args): defaultapp = ["/home/daniel_j/compiled/waterfox/waterfox"]; x = 0; for each in args: - parsed_uri = urlparse(each) - domain = '{uri.scheme}://{uri.netloc}/'.format(uri=parsed_uri) + parsed_uri = urlparse(each); + domain = '{uri.scheme}://{uri.netloc}/'.format(uri=parsed_uri); if (each.endswith(tuple(images))): print("image {}".format(each)); run(imageapp, each); -- cgit v1.2.3