brunoarine / org-similarity

Emacs package that helps org-mode users (re)discover similar documents
GNU General Public License v3.0
88 stars 12 forks source link

Fix relative path bug #10

Closed brunoarine closed 1 year ago

brunoarine commented 1 year ago

pathlib.Path.relative_to() requires self to be the subpath of the argument, otherwise it throws an exception. os.path.relpath() doesn't have this requirement.

Issue spotted in #9.