Show More
@@ -73,14 +73,14 b' class ConfigLoader:' | |||||
73 | # avoid including the same file more than once |
|
73 | # avoid including the same file more than once | |
74 | if fname in self.included: |
|
74 | if fname in self.included: | |
75 | return data |
|
75 | return data | |
76 | Xinfo = ultraTB.AutoFormattedTB() |
|
76 | Xinfo = ultraTB.AutoFormattedTB(color_scheme='NoColor') | |
77 | if convert==None and recurse_key : convert = {qwflat:recurse_key} |
|
77 | if convert==None and recurse_key : convert = {qwflat:recurse_key} | |
78 | # for production, change warn to 0: |
|
78 | # for production, change warn to 0: | |
79 | data.merge(read_dict(fname,convert,fs=self.field_sep,strip=1, |
|
79 | data.merge(read_dict(fname,convert,fs=self.field_sep,strip=1, | |
80 | warn=0,no_empty=0,**kw)) |
|
80 | warn=0,no_empty=0,**kw)) | |
81 | # keep track of successfully loaded files |
|
81 | # keep track of successfully loaded files | |
82 | self.included.append(fname) |
|
82 | self.included.append(fname) | |
83 |
if recurse_key in data |
|
83 | if recurse_key in data: | |
84 | for incfilename in data[recurse_key]: |
|
84 | for incfilename in data[recurse_key]: | |
85 | found=0 |
|
85 | found=0 | |
86 | try: |
|
86 | try: |
General Comments 0
You need to be logged in to leave comments.
Login now