diff options
Diffstat (limited to 'tools/ccfg-merge-debug')
-rwxr-xr-x | tools/ccfg-merge-debug | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/ccfg-merge-debug b/tools/ccfg-merge-debug index 5b6b050a..1f08e0cb 100755 --- a/tools/ccfg-merge-debug +++ b/tools/ccfg-merge-debug @@ -48,10 +48,10 @@ def main(): ccph.cloud_fn = outfile c_handlers = helpers.ContentHandlers() - c_handlers.register_defaults([ccph]) + c_handlers.register(ccph) called = [] - for (_ctype, mod) in c_handlers.iteritems(): + for (_ctype, mod) in c_handlers.items(): if mod in called: continue handlers.call_begin(mod, data, frequency) @@ -69,13 +69,14 @@ def main(): # to help write there contents to files with numbered # names... 'handlercount': 0, + 'excluded': [], } handlers.walk(user_data_msg, handlers.walker_callback, data=part_data) # Give callbacks opportunity to finalize called = [] - for (_ctype, mod) in c_handlers.iteritems(): + for (_ctype, mod) in c_handlers.items(): if mod in called: continue handlers.call_end(mod, data, frequency) |