From 78677f9fb2ebb7917996622b2852e98eda92d798 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Thu, 12 Mar 2026 22:01:57 +0800 Subject: [PATCH] bugfix --- xls2ddl/json2ddl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xls2ddl/json2ddl.py b/xls2ddl/json2ddl.py index 1158996..e38ee7a 100644 --- a/xls2ddl/json2ddl.py +++ b/xls2ddl/json2ddl.py @@ -29,7 +29,7 @@ def xls2ddl(xlsfile,dbtype): try: data = json.load(f) except Exception as e: - print(f'{f}:error({e})') + print(f'{xlsfile}:error({e})') raise e if data is None: print(xlsfile, 'not data return')