Mercurial > p > roundup > code
view roundup/anypy/ssl_.py @ 7775:b8e63e65d9a8
chore: replace use of dir with template_dir.
variable 'dir' was shadowing a Python builtin.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 04 Mar 2024 18:51:41 -0500 |
| parents | d5d7ecd31864 |
| children |
line wrap: on
line source
try: # Python 3+ from ssl import SSLError except (ImportError, AttributeError): # Python 2.5-2.7 from socket import sslerror as SSLError # noqa: F401
