Submitter | Katsunori FUJIWARA |
---|---|
Date | Feb. 10, 2016, 1:58 p.m. |
Message ID | <4606840cefadab8f4730.1455112725@feefifofum> |
Download | mbox | patch |
Permalink | /patch/13095/ |
State | Accepted |
Delegated to: | Martin von Zweigbergk |
Headers | show |
Comments
Patch
diff --git a/doc/docchecker b/doc/docchecker --- a/doc/docchecker +++ b/doc/docchecker @@ -48,7 +48,7 @@ def main(): try: with open(f) as file: work(file) - except: - print("failed to process %s" % f) + except BaseException as e: + print("failed to process %s: %s" % (f, e)) main()