diff options
Diffstat (limited to 'kvmd/plugins/msd/otg/storage.py')
-rw-r--r-- | kvmd/plugins/msd/otg/storage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/plugins/msd/otg/storage.py b/kvmd/plugins/msd/otg/storage.py index d5f90334..80e6fa87 100644 --- a/kvmd/plugins/msd/otg/storage.py +++ b/kvmd/plugins/msd/otg/storage.py @@ -138,7 +138,7 @@ class Storage: def __filter(self, items: list[str]) -> Generator[str, None, None]: for item in sorted(map(str.strip, items)): - if not item.startswith(".__") and item != "lost+found": + if not item.startswith(".") and item != "lost+found": yield item def get_image_by_name(self, name: str) -> Image: |