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