[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [HTCondor-users] how do I test/debug condor_chirp ?



On 11/10/23 15:29, Stefano Belforte wrote:

Quotes are indeed a pain, I am using subprocess form a python script
to issue condor_chirp.. oh well, I'll figure out.

subprocess with `shell = False` (the default) will pass the argument to exec() as is, i.e. Popen(["condor_chirp","set_job_attr_delayed","Chirp_myThing",'"string,with,comma"']) should pass it "string,with,comma" incl. the double quotes.

Dima