Loading testing/check_asn1.py +1 −1 Original line number Diff line number Diff line Loading @@ -61,7 +61,7 @@ def validateASN1Files (fileList): def validateAllASN1FilesInPath (path): globPattern = str(Path(path)) + '/**/*.asn1' globPattern = str(Path(path)) + '/*.asn1' logging.info("Searching: " + globPattern) schemaGlob = glob(globPattern, recursive=True) return validateASN1Files(schemaGlob) Loading Loading
testing/check_asn1.py +1 −1 Original line number Diff line number Diff line Loading @@ -61,7 +61,7 @@ def validateASN1Files (fileList): def validateAllASN1FilesInPath (path): globPattern = str(Path(path)) + '/**/*.asn1' globPattern = str(Path(path)) + '/*.asn1' logging.info("Searching: " + globPattern) schemaGlob = glob(globPattern, recursive=True) return validateASN1Files(schemaGlob) Loading