From 609951e1d7519612b019f168b45cf56e44cb61cf Mon Sep 17 00:00:00 2001 From: Robin Mills Date: Fri, 26 Oct 2018 21:59:30 +0100 Subject: [PATCH] Fix categorize.py to handle .DS_Store --- contrib/buildserver/categorize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/buildserver/categorize.py b/contrib/buildserver/categorize.py index 7e8649b0..9af05db4 100755 --- a/contrib/buildserver/categorize.py +++ b/contrib/buildserver/categorize.py @@ -60,7 +60,7 @@ def visitfile(file,path,myData): home = myData['home' ] - if os.path.isfile(path): + if os.path.isfile(path) and file.find('-') != -1: # parse exiv2-0.27.0.1-CYGWIN-2018:10:19_01:13:00.tar.gz # print('file = ' + file) splits = file.split('-')