Message416342
I started to investigate and found that a double slash in the beginning cancels any parsing of a path:
>>> Path("//Library/Video")._parts
['\\\\Library\\Video\\']
vs
>>> Path("/Library/Video")._parts
['\\', 'Library', 'Video']
Investigating further. |
|
| Date |
User |
Action |
Args |
| 2022-03-30 11:58:01 | arhadthedev | set | recipients:
+ arhadthedev, John15321 |
| 2022-03-30 11:58:01 | arhadthedev | set | messageid: <[email protected]> |
| 2022-03-30 11:58:00 | arhadthedev | link | issue47161 messages |
| 2022-03-30 11:58:00 | arhadthedev | create | |
|