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:
		@@ -150,7 +150,7 @@ class OBS:
 | 
			
		||||
    def _download(self, project, package, name, revision):
 | 
			
		||||
        url = osc.core.makeurl(
 | 
			
		||||
            self.url,
 | 
			
		||||
            ["source", project, package, urllib.parse.quote(name)],
 | 
			
		||||
            ["source", project, package, name],
 | 
			
		||||
            {"rev": revision, "expand": 1},
 | 
			
		||||
        )
 | 
			
		||||
        return osc.core.http_GET(url)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user