Re: Issue with spaces in string parameter

2018-11-13 Thread 'Björn Pedersen' via Jenkins Users
Am Dienstag, 13. November 2018 00:23:02 UTC+1 schrieb Martin d'Anjou: > > I doubt that would fix it, I was curious and try it. Jenkins trims, but it > does not split the value on spaces. > > The problem might be on how you pass the value to your python script. Can > you share that? > > Just to

Re: Issue with spaces in string parameter

2018-11-12 Thread Martin d'Anjou
I doubt that would fix it, I was curious and try it. Jenkins trims, but it does not split the value on spaces. The problem might be on how you pass the value to your python script. Can you share that? Martin On Monday, November 12, 2018 at 8:15:55 AM UTC-5, Danny Jacob wrote: > > Uncheck

Re: Issue with spaces in string parameter

2018-11-12 Thread Danny Jacob
Uncheck ‘trim string’ checkbox in advanced and try. It should work On Mon, 12 Nov 2018 at 3:56 PM, Raunak Kumar Gupta wrote: > I have a string parameter in jenkins called 'Keywords'. I set the value of > Keywords = "Google,Microsoft,Uber Go". But jenkins string parameter takes > only till

Issue with spaces in string parameter

2018-11-11 Thread Raunak Kumar Gupta
I have a string parameter in jenkins called 'Keywords'. I set the value of Keywords = "Google,Microsoft,Uber Go". But jenkins string parameter takes only till "Google,Microsoft,Uber" and truncates "Go" automatically. Due to this my code runs incorrectly. Can anyone help in handling this