diff options
author | Maxim Devaev <[email protected]> | 2023-03-06 04:18:38 +0200 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2023-03-06 04:18:38 +0200 |
commit | 7667834b6de23ce71ea2e805f6a50eb679444b9e (patch) | |
tree | fac801c7d5372d0c7e4c218393d823a3a4cf9954 /kvmd/plugins | |
parent | 5495f70564e03ae0d6ac81866a37cdd79858d4e4 (diff) |
structly validation
Diffstat (limited to 'kvmd/plugins')
-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: |