Skip to content

Commit

Permalink
Minor documentation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
haukex committed Oct 31, 2024
1 parent 70de03b commit c7bd215
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Please note that both [`unzipwalk()`](#function-unzipwalk) and [`recursive_open(
- various [`OSError`](https://docs.python.org/3/library/exceptions.html#OSError)s
- other exceptions may be possible

Therefore, you may want to catch all [`RuntimeError`](https://docs.python.org/3/library/exceptions.html#RuntimeError)s to play it safe.
Therefore, you may need to catch all [`Exception`](https://docs.python.org/3/library/exceptions.html#Exception)s to play it safe.

#### SEE ALSO
- [zipfile Issues](https://github.com/orgs/python/projects/7)
Expand Down
2 changes: 1 addition & 1 deletion unzipwalk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
- various :exc:`OSError`\\s
- other exceptions may be possible
Therefore, you may want to catch all :exc:`RuntimeError`\\s to play it safe.
Therefore, you may need to catch all :exc:`Exception`\\s to play it safe.
.. seealso::
- `zipfile Issues <https://github.com/orgs/python/projects/7>`_
Expand Down

0 comments on commit c7bd215

Please sign in to comment.