Loading testing/asn_process.py +2 −2 Original line number Diff line number Diff line Loading @@ -43,10 +43,10 @@ def syntaxCheckASN(fileList): try: if file.as_posix() in filesWithBigInts: newFile = reconstrainInteger(str(file)) p = run([asn1c, '-E', fix_path(newFile)], capture_output=True) p = run(["asn1c", '-E', fix_path(newFile)], capture_output=True) Path(newFile).unlink() else: p = run([asn1c, '-E', fix_path(str(file))], capture_output=True) p = run(["asn1c", '-E', fix_path(str(file))], capture_output=True) if (p.returncode != 0): errorMessage = p.stderr.decode().splitlines()[0] if errorMessage.startswith(' Value "18446744073709551615" at line'): Loading Loading
testing/asn_process.py +2 −2 Original line number Diff line number Diff line Loading @@ -43,10 +43,10 @@ def syntaxCheckASN(fileList): try: if file.as_posix() in filesWithBigInts: newFile = reconstrainInteger(str(file)) p = run([asn1c, '-E', fix_path(newFile)], capture_output=True) p = run(["asn1c", '-E', fix_path(newFile)], capture_output=True) Path(newFile).unlink() else: p = run([asn1c, '-E', fix_path(str(file))], capture_output=True) p = run(["asn1c", '-E', fix_path(str(file))], capture_output=True) if (p.returncode != 0): errorMessage = p.stderr.decode().splitlines()[0] if errorMessage.startswith(' Value "18446744073709551615" at line'): Loading