We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad16fb0 commit cd9e7eaCopy full SHA for cd9e7ea
1 file changed
polyxdr/parser.py
@@ -557,13 +557,13 @@ def xdr_parse_definition(self, x):
557
if dlf[0] == 'subprocess':
558
name = x[1]
559
path = None
560
- param = ''
+ dlparam = ''
561
excludes = []
562
for spf in dlf[1:]:
563
if spf[0] == 'path':
564
path = spf[1]
565
elif spf[0] == 'param':
566
- param = spf[1]
+ dlparam = spf[1]
567
elif spf[0] == 'name':
568
name = spf[1]
569
elif spf[0] == 'exclude':
@@ -575,7 +575,7 @@ def xdr_parse_definition(self, x):
575
else:
576
print(spf)
577
datalogger.append(XDRSubprocess(name, structure, path, \
578
- param, excludes, location, group))
+ dlparam, excludes, location, group))
579
if len(x) >= 4:
580
num = x[3]
581
self.cmdcnt += 1
0 commit comments