Fix for filenames with special characters, #561, #618

This commit is contained in:
Rhet Turnbull
2022-02-03 22:46:11 -08:00
parent e32090bf39
commit f3063d35be
6 changed files with 165 additions and 66 deletions

View File

@@ -4700,7 +4700,14 @@ def test_export_live_edited():
# basic export
result = runner.invoke(
export,
[os.path.join(cwd, PHOTOS_DB_RHET), ".", "-V", "--uuid", UUID_LIVE_EDITED],
[
os.path.join(cwd, PHOTOS_DB_RHET),
".",
"-V",
"--uuid",
UUID_LIVE_EDITED,
"--download-missing",
],
)
assert result.exit_code == 0
files = glob.glob("*")