Mercurial > repos > fubar > tool_factory_2
comparison toolfactory/rgToolFactory2.py @ 132:65b5e9acf98a draft
Uploaded
| author | fubar |
|---|---|
| date | Sat, 10 Apr 2021 01:04:14 +0000 |
| parents | 72d190989c68 |
| children | b843d75a5107 |
comparison
equal
deleted
inserted
replaced
| 131:72d190989c68 | 132:65b5e9acf98a |
|---|---|
| 303 rep = p["repeat"] == "1" # repeats make NO sense | 303 rep = p["repeat"] == "1" # repeats make NO sense |
| 304 if rep: | 304 if rep: |
| 305 print(f'### warning. Repeats for {nam} ignored - not permitted in positional parameter command lines!') | 305 print(f'### warning. Repeats for {nam} ignored - not permitted in positional parameter command lines!') |
| 306 over = p["override"] | 306 over = p["override"] |
| 307 clsuffix.append([p["CL"], nam, over]) | 307 clsuffix.append([p["CL"], nam, over]) |
| 308 xclsuffix.append([p["CL"], nam, over]) | 308 xclsuffix.append([p["CL"], '"$%s"' % nam, over]) |
| 309 for p in self.selpar: | 309 for p in self.selpar: |
| 310 clsuffix.append([p["CL"], p["name"], p["override"]]) | 310 clsuffix.append([p["CL"], nam, p["override"]]) |
| 311 xclsuffix.append([p["CL"], '"$%s"' % p["name"], p["override"]]) | 311 xclsuffix.append([p["CL"], '"$%s"' % nam, p["override"]]) |
| 312 clsuffix.sort() | 312 clsuffix.sort() |
| 313 xclsuffix.sort() | 313 xclsuffix.sort() |
| 314 self.xclsuffix = xclsuffix | 314 self.xclsuffix = xclsuffix |
| 315 self.clsuffix = clsuffix | 315 self.clsuffix = clsuffix |
| 316 | 316 |
