diff --git a/ext_data/excel2json.py b/ext_data/excel2json.py index cb85a6e..063071d 100644 --- a/ext_data/excel2json.py +++ b/ext_data/excel2json.py @@ -33,7 +33,7 @@ def convertSheet(sourceFile, sheet): out_file.close() def convert(sourceFile): - if sourceFile != 'PlatformIds.xlsx': + if sourceFile != 'PlatformIds_raw.xlsx': return print(sourceFile) excel = xlrd.open_workbook(sourceFile) diff --git a/ext_data/excel2php.py b/ext_data/excel2php.py index d343c3f..d158cea 100644 --- a/ext_data/excel2php.py +++ b/ext_data/excel2php.py @@ -55,8 +55,8 @@ def convertSheet(sourceFile, sheet): csvfile.close() def convert(sourceFile): -# if sourceFile == 'PlatformIds.xlsx': -# return + if sourceFile == 'PlatformIds_raw.xlsx': + return print(sourceFile) excl = xlrd.open_workbook(sourceFile) for sheet in excl.sheets():