[Bug 1979637] Re: apport_python_hook: FileNotFoundError if cwd was deleted
Launchpad Bug Tracker
1979637 at bugs.launchpad.net
Mon Jun 27 14:31:06 UTC 2022
This bug was fixed in the package apport - 2.22.0-0ubuntu1
---------------
apport (2.22.0-0ubuntu1) kinetic; urgency=medium
* New upstream release:
- Replace `ProblemReport.get_date` by `ProblemReport.get_timestamp`, fixes
regression in 2.21.0 (LP: #1978487)
- apport-gtk: Exclude trailing dot from URL links (LP: #1978301)
- Fix `AttributeError`: 'NoneType' object has no attribute 'write', fixes
regression in 2.21.0 (LP: #1979211)
- apport_python_hook: Properly handle missing modules (LP: #1774843)
- apport_python_hook: Fix FileNotFoundError if the current directory was
deleted (LP: #1979637)
- apport_python_hook: Fix crash if os.getcwd() fails (LP: #1977954)
- Replace deprecated 'imp' module (LP: #1947425)
- whoopsie-upload-all: Fix 'EOFError' object has no attribute 'errno',
fixes regression in 2.21.0 (LP: #1979681)
* Fix KeyError: 'CasperMD5json'
-- Benjamin Drung <bdrung at ubuntu.com> Mon, 27 Jun 2022 12:03:00 +0200
** Changed in: apport (Ubuntu)
Status: New => Fix Released
--
You received this bug notification because you are a member of Ubuntu
Foundations Bugs, which is subscribed to apport in Ubuntu.
https://bugs.launchpad.net/bugs/1979637
Title:
apport_python_hook: FileNotFoundError if cwd was deleted
Status in Apport:
Fix Released
Status in apport package in Ubuntu:
Fix Released
Bug description:
Run following shell script:
```sh
echo "raise ValueError()" > /tmp/failure.py
mkdir /tmp/foo
cd /tmp/foo/
rmdir /tmp/foo/
python3 ../failure.py
```
Python should only show a ValueError, but apport_python_hook.py
crashes:
```
Traceback (most recent call last):
File "../failure.py", line 1, in <module>
raise ValueError()
ValueError
Error in sys.excepthook:
Traceback (most recent call last):
File "<frozen importlib._bootstrap_external>", line 1372, in _path_importer_cache
KeyError: '..'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/apport_python_hook.py", line 55, in apport_excepthook
import apt_pkg
File "<frozen importlib._bootstrap>", line 1027, in _find_and_load
File "<frozen importlib._bootstrap>", line 1002, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 945, in _find_spec
File "<frozen importlib._bootstrap_external>", line 1439, in find_spec
File "<frozen importlib._bootstrap_external>", line 1408, in _get_spec
File "<frozen importlib._bootstrap_external>", line 1374, in _path_importer_cache
File "<frozen importlib._bootstrap_external>", line 1350, in _path_hooks
File "<frozen importlib._bootstrap_external>", line 1632, in path_hook_for_FileFinder
File "<frozen importlib._bootstrap_external>", line 1505, in __init__
FileNotFoundError: [Errno 2] No such file or directory
Original exception was:
Traceback (most recent call last):
File "../failure.py", line 1, in <module>
raise ValueError()
ValueError
```
To manage notifications about this bug go to:
https://bugs.launchpad.net/apport/+bug/1979637/+subscriptions
More information about the foundations-bugs
mailing list