# | Line 239 | Line 239 | class MultiCrab: | |
---|---|---|
239 | # write crab command to be executed later... | |
240 | cmd='crab ' | |
241 | for o in options: | |
242 | < | cmd+=str(o)+" "+str(options[o])+" " |
242 | > | if options[o]==None: options[o]="" |
243 | > | elif str(options[o])[0]=="-": options[o]='"\\'+str(options[o])+'"' |
244 | > | cmd+=str(o)+' '+str(options[o])+' ' |
245 | cmd+="\n" | |
246 | # print cmd | |
247 |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |