Mercurial > p > roundup > code
diff roundup/dist/command/build_doc.py @ 7412:4ff18b1cd9bf
Remove raise ImportError used for testing.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 25 May 2023 16:38:25 -0400 |
| parents | 42bf0a707763 |
| children | 302ce182ffd3 |
line wrap: on
line diff
--- a/roundup/dist/command/build_doc.py Thu May 25 16:37:07 2023 -0400 +++ b/roundup/dist/command/build_doc.py Thu May 25 16:38:25 2023 -0400 @@ -6,11 +6,9 @@ import os, sys import os.path -import glob try: from setuptools.command.install import install as _build_py - raise ImportError except ImportError: from distutils.command.build import build as _build_py # try/except clause orig_build = _build_py
