Loading tools/extract_asn1.py +2 −2 Original line number Diff line number Diff line Loading @@ -5,11 +5,11 @@ # 3. Save the document as a text file # If requested, select "Text ending: MS-DOS" and "End lines with: CR only" # 4. Call the script: python extract_asn1.py "<text_file>" # The script generates ETSI_TS_103_666_asn1_definitions.asn # The script generates ETSI_TS_103_666-1_asn1_definitions.asn import sys inFile = open(sys.argv[1]) outFile = open("ETSI_TS_103_666_asn1_definitions.asn", "w") outFile = open("ETSI_TS_103_666-1_asn1_definitions.asn", "w") copy = False for line in inFile: Loading Loading
tools/extract_asn1.py +2 −2 Original line number Diff line number Diff line Loading @@ -5,11 +5,11 @@ # 3. Save the document as a text file # If requested, select "Text ending: MS-DOS" and "End lines with: CR only" # 4. Call the script: python extract_asn1.py "<text_file>" # The script generates ETSI_TS_103_666_asn1_definitions.asn # The script generates ETSI_TS_103_666-1_asn1_definitions.asn import sys inFile = open(sys.argv[1]) outFile = open("ETSI_TS_103_666_asn1_definitions.asn", "w") outFile = open("ETSI_TS_103_666-1_asn1_definitions.asn", "w") copy = False for line in inFile: Loading