Skip to content
Snippets Groups Projects
Commit f101aa8e authored by Matt Traudt's avatar Matt Traudt
Browse files

Make python 3.4 happy ...

Tests have been failing because -- I guess -- python 3.4 can't unpack
two lists in the same list of arguments.
parent 210a52f6
No related branches found
No related tags found
No related merge requests found
......@@ -86,8 +86,8 @@ class Destination:
assert u.netloc
if not u.path:
assert default_path[0] == '/'
u = urlparse('{}://{}{}{}{}{}'.format(
*u[0:2], default_path, *u[2:]))
parts = u[0:2] + default_path + u[2:]
u = urlparse('{}://{}{}{}{}{}'.format(*parts))
self._url = u
def is_usable(self, circ_id, session, cont):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment