##// END OF EJS Templates
Changed copy import to be explicit in code
Jonathan Frederic -
Show More
@@ -393,10 +393,10 b' class Exporter(Configurable):'
393 and filters.
393 and filters.
394 """
394 """
395
395
396 # Do a deepcopy first,
396 # Do a copy.deepcopy first,
397 # we are never safe enough with what the transformers could do.
397 # we are never safe enough with what the transformers could do.
398 nbc = deepcopy(nb)
398 nbc = copy.deepcopy(nb)
399 resc = deepcopy(resources)
399 resc = copy.deepcopy(resources)
400
400
401 #Run each transformer on the notebook. Carry the output along
401 #Run each transformer on the notebook. Carry the output along
402 #to each transformer
402 #to each transformer
General Comments 0
You need to be logged in to leave comments. Login now