##// END OF EJS Templates
Backport PR #2061: use explicit tuple in exception...
MinRK -
Show More
@@ -684,7 +684,7 b' class OSMagics(Magics):'
684 684
685 685 try :
686 686 cont = self.shell.find_user_code(parameter_s)
687 except ValueError, IOError:
687 except (ValueError, IOError):
688 688 print "Error: no such file, variable, URL, history range or macro"
689 689 return
690 690
General Comments 0
You need to be logged in to leave comments. Login now