##// END OF EJS Templates
docchecker: remove naked except clause...
FUJIWARA Katsunori -
r28048:72b02b49 default
parent child Browse files
Show More
@@ -48,7 +48,7 b' def main():'
48 try:
48 try:
49 with open(f) as file:
49 with open(f) as file:
50 work(file)
50 work(file)
51 except:
51 except BaseException as e:
52 print("failed to process %s" % f)
52 print("failed to process %s: %s" % (f, e))
53
53
54 main()
54 main()
General Comments 0
You need to be logged in to leave comments. Login now