Skip to content

Commit

Permalink
fix: path object to string
Browse files Browse the repository at this point in the history
  • Loading branch information
severinsimmler committed Apr 25, 2019
1 parent 2e01b0a commit 25f6f4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cophi/api.py
Expand Up @@ -102,7 +102,7 @@ def lazy_processing(filepaths, **kwargs):
document.title = title
metadata_ = metadata_.append({"uuid": title,
"filepath": str(filepath),
"parent": filepath.parent,
"parent": str(filepath.parent),
"title": filepath.stem,
"suffix": filepath.suffix},
ignore_index=True)
Expand Down

0 comments on commit 25f6f4f

Please sign in to comment.