1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-24 00:35:18 +03:00

Release notes updated

This commit is contained in:
Damjan Adamic 2015-09-19 21:38:37 +02:00
parent d63ac41b6a
commit 96a2e18833
3 changed files with 26 additions and 2 deletions

View file

@ -10,8 +10,11 @@ import re
import re
inputFile = sys.argv[1]
inp = open(inputFile, "r")
if len(sys.argv) > 1:
inputFile = sys.argv[1]
inp = open(inputFile, "r")
else:
inp = sys.stdin
pattern = re.compile("#\d+")
while True: