Closed david-stream closed 6 years ago
The command "pip install requests==0.14.1 --use-mirrors" failed and exited with 2 during
Thanks for the PR, sorry it took a while to look at. The test failures are something that needs to be addressed separately, but the PR itself looks great.
When branch such as 'dev/test' use quote_any function, port.quote will let safe='/' as default. So branch whose text contains '/' will not work in restful api request
GET /projects/:id/repository/branches/:branch
Just changeport.quote(port.to_b(val))
toport.quote(port.to_b(val), safe='')
will be ok.