diff options
| author | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2022-07-28 17:06:24 +0000 |
|---|---|---|
| committer | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2022-07-28 17:06:24 +0000 |
| commit | ad7975cf5dc5a865d2a2ebd343fd6f3ece9b2c11 (patch) | |
| tree | 209af2953d58a570f20a7cb02471d48095f36048 /tools/dev | |
| parent | 64cae09064b008514b323dff8372ff8e03912a14 (diff) | |
| download | docutils-ad7975cf5dc5a865d2a2ebd343fd6f3ece9b2c11.tar.gz | |
Cleanup.
Fix typo.
Remove spurious whitespace.
Bare "except" replaced with ``except Exception``.
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9115 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'tools/dev')
| -rwxr-xr-x | tools/dev/profile_docutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dev/profile_docutils.py b/tools/dev/profile_docutils.py index 8a54c0f92..17187488b 100755 --- a/tools/dev/profile_docutils.py +++ b/tools/dev/profile_docutils.py @@ -35,5 +35,5 @@ stats.print_stats(40) try: exec(open(os.environ['PYTHONSTARTUP']).read()) -except: +except Exception: pass |
