Skip to content

Commit

Permalink
Need to encode space char
Browse files Browse the repository at this point in the history
  • Loading branch information
jakcodex committed Sep 19, 2020
1 parent df98eee commit f159f17
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/setuptools/src/muledump.js
Expand Up @@ -3490,6 +3490,7 @@ setuptools.app.muledump.ocl.params = function(profile) {

var params = '';
Object.keys(ocl_params).forEach(function(param) {
if ( typeof ocl_params[param] === 'string' ) ocl_params[param] = ocl_params[param].replace(" ", "%20");

This comment has been minimized.

Copy link
@hose0

hose0 Nov 30, 2020

XD nie ma kuwa

params += param + '=' + ocl_params[param] + setuptools.config.oclParamSeparator;
});

Expand Down

0 comments on commit f159f17

Please sign in to comment.