I'm using the --dry-run flag right now to get a sense of what changes git-filter-repo will make to my repository on certain commands. When run a git diff of the resulting fast-export.original and fast-export.filtered files, I noticed that quotation marks are being removed from paths that have spaces in them.
For example, running
git diff --no-index filter-repo/fast-export.original filter-repo/fast-export.filtered
results in the following output in the shell:

Is that expected behavior? Is there some way I can prevent these changes so that the diff is more useful?