forked from importers/git-importer
Remove double quoting of url parameters
makeurl quotes by itself, so this was messing it up
This commit is contained in:
parent
d0ccf83684
commit
f5ffc83a69
@ -150,7 +150,7 @@ class OBS:
|
|||||||
def _download(self, project, package, name, revision):
|
def _download(self, project, package, name, revision):
|
||||||
url = osc.core.makeurl(
|
url = osc.core.makeurl(
|
||||||
self.url,
|
self.url,
|
||||||
["source", project, package, urllib.parse.quote(name)],
|
["source", project, package, name],
|
||||||
{"rev": revision, "expand": 1},
|
{"rev": revision, "expand": 1},
|
||||||
)
|
)
|
||||||
return osc.core.http_GET(url)
|
return osc.core.http_GET(url)
|
||||||
|
Loading…
Reference in New Issue
Block a user