Commit c6489eb4 authored by canterburym's avatar canterburym
Browse files

Correct glob pattern

parent a5e10368
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)