From eb15019c944984e034b124ccbbb144a39621f689 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Fri, 6 Jun 2014 10:30:58 +0300 Subject: [PATCH] ignore Thumbs.db --- pandora_client/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pandora_client/__init__.py b/pandora_client/__init__.py index 5f9c839..ec613e2 100644 --- a/pandora_client/__init__.py +++ b/pandora_client/__init__.py @@ -105,6 +105,7 @@ def ignore_file(client, path): filename = os.path.basename(path) if filename.startswith('._') \ or filename in ('.DS_Store', ) \ + or filename in ('Thumbs.db', ) \ or filename.endswith('~') \ or 'Extras/' in path \ or 'Versions/' in path \