We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b860576 commit 3a02eb4Copy full SHA for 3a02eb4
dissect/target/helpers/compat/path_313.py
@@ -393,4 +393,7 @@ def group(self) -> str:
393
394
class _GlobberTargetPath(TargetPath):
395
def __str__(self) -> str:
396
+ # This is necessary because the _Globber class expects an added `/` at the end
397
+ # However, only PurePath's properly add that, normal Path's don't
398
+ # We do want to operate on Path objects rather than strings, so do a little hack here
399
return self._raw_path
0 commit comments