Skip to content

Commit 5cc9b2d

Browse files
authored
Merge pull request #67 from ArcanaFramework/fs-object-bug-fix
fixes bug in fsobject error message
2 parents 8fc9dc9 + 05560da commit 5cc9b2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fileformats/generic/fsobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class FsObject(FileSet, os.PathLike):
1717
def fspath(self):
1818
if len(self.fspaths) > 1:
1919
raise FormatMismatchError(
20-
f"More than one fspath ({self.fspaths}) provided to {self}, "
20+
f"More than one fspath ({self.fspaths}) provided to FsObject, "
2121
f"primary path is ambiguous"
2222
)
2323
return next(iter(self.fspaths))

0 commit comments

Comments
 (0)