Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/lnussel/osc
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-h committed Aug 17, 2015
2 parents e4e3bdc + d534218 commit 6a7314f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osc/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -3151,7 +3151,7 @@ def makeurl(baseurl, l, query=[]):
query = urlencode(query)

scheme, netloc, path = urlsplit(baseurl)[0:3]
return urlunsplit((scheme, netloc, '/'.join([path] + l), query, ''))
return urlunsplit((scheme, netloc, '/'.join([path] + list(l)), query, ''))


def http_request(method, url, headers={}, data=None, file=None):
Expand Down

0 comments on commit 6a7314f

Please sign in to comment.