Changes between Initial Version and Version 1 of Ticket #34720, comment 9
- Timestamp:
- Jul 20, 2023, 12:31:01 PM (16 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34720, comment 9
initial v1 1 1 Apologies if my note/solution distracted anyone from the original bug report. What was throwing us off is that it seems like `path.absolute()` will never raise an `FileNotFoundError` error. 2 2 3 ``` 3 {{{ 4 4 > from pathlib import Path 5 5 > path = Path("i-do-not-exist.nope") 6 6 > path.absolute() 7 7 > PosixPath('/app/i-do-not-exist.nope') 8 ``` 8 }}} 9 9 10 10 I see your note about permissions, but I'm kind of surprised this code does anything.