Closed
Description
Observed on Linux, a failure at line 931 of bagit.py in git commit hash code bff20d2
RHEL 7.5 (Maipo), Linux 3.10.0-1160.15.2.el7.x86_64 GNU/Linux
Python 3.7.4
using miniconda3
File names containing this 4-character sequence cause an "is unsafe" false error due to expansion of the tilde:
~$_-
To reproduce, create a file name such as
data/blah/~$_-expect_fail.doc
In Python v3, do this
import os, sys
f = "data/blah/~$_-expect_fail.doc"
# Note that Linux home directory is inserted in expansion
os.path.expandvars(f)
'data/blah/~/home/users/jdoe-expect_fail.doc'
A similar test with filename that does not have the hyphen after the underscore
data/blah/~$_expect_success.doc
works OK, i.e. without unwanted expansion of the tilde.
Metadata
Metadata
Assignees
Labels
No labels