mirror of
https://github.com/shadoll/moma.git
synced 2026-08-28 11:33:25 +00:00
bump: update version to 0.8.10 and remove logging info from scan_files method
This commit is contained in:
@@ -185,7 +185,6 @@ class RenamerApp(App):
|
||||
main_container.remove_class("catalog-mode")
|
||||
|
||||
def scan_files(self):
|
||||
logging.info("scan_files called")
|
||||
if not self.scan_dir or not self.scan_dir.exists() or not self.scan_dir.is_dir():
|
||||
details = self.query_one("#details_technical", Static)
|
||||
details.update("Error: Directory does not exist or is not a directory")
|
||||
@@ -238,7 +237,6 @@ class RenamerApp(App):
|
||||
elif item.is_file() and item.suffix.lower() in {
|
||||
f".{ext}" for ext in MEDIA_TYPES
|
||||
}:
|
||||
logging.info(f"Adding file to tree: {item.name!r} (full path: {item})")
|
||||
# Add file type icon before filename
|
||||
icon = self._get_file_icon(item)
|
||||
label = f"{icon} {escape(item.name)}"
|
||||
|
||||
Reference in New Issue
Block a user