##// END OF EJS Templates
DebugWriter now reads key instead of
Jonathan Frederic -
Show More
@@ -34,10 +34,10 b' class DebugWriter(WriterBase):'
34 34 See base for more...
35 35 """
36 36
37 if 'figures' in resources:
38 print("Figures extracted from %s" % notebook_name)
37 if 'outputs' in resources:
38 print("outputs extracted from %s" % notebook_name)
39 39 print('-' * 80)
40 pprint.pprint(resources['figures'], indent=2, width=70)
40 pprint.pprint(resources['outputs'], indent=2, width=70)
41 41 else:
42 print("No figures extracted from %s" % notebook_name)
42 print("No outputs extracted from %s" % notebook_name)
43 43 print('=' * 80)
General Comments 0
You need to be logged in to leave comments. Login now