hxp
2020-10-23 f89e346d734e943f9a5780f6e84f301fea1be739
1111 修复简繁体转换工具无法转换大写TXT文件bug;
1个文件已修改
2 ■■■ 已修改文件
Tool/简繁体转换工具/chscht.py 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tool/简繁体转换工具/chscht.py
@@ -86,7 +86,7 @@
    for parent, _, filenames in os.walk(path):
        for filename in filenames:
            fullPath = os.path.join(parent, filename)
            if not fullPath.endswith(".txt"):
            if not fullPath.lower().endswith(".txt"):
                continue
            
            totalCount += 1