mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-20 12:21:53 +00:00
no bare excepts
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3115 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
c558728370
commit
4f67591327
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@ def _stack_format (stack):
|
|||
try:
|
||||
s.write(repr(value))
|
||||
s.write(os.linesep)
|
||||
except:
|
||||
except StandardError:
|
||||
s.write("error in repr() call%s" % os.linesep)
|
||||
return s.getvalue()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue