[git fast commit] 29. Jan 2019 - 19:00:22

This commit is contained in:
Yannik Schmidt
2019-01-29 19:00:22 +01:00
parent d6480e2411
commit 62fa05962c
4 changed files with 37 additions and 18 deletions

5
startInsurgency.py Normal file → Executable file
View File

@@ -1,8 +1,7 @@
#!/usr/bin/python3
import Storrage
import sys
import NetworkParser
import FileInStream
import FileReader
import argparse
parser = argparse.ArgumentParser(description='Insurgency rating python backend server')
@@ -17,7 +16,7 @@ parser.add_argument('--no-follow','-nf',dest='nofollow', action='store_const',\
if __name__ == "__main__":
args = parser.parse_args()
FileInStream.readfiles( args.files ,\
FileReader.readfiles( args.files ,\
args.start_at_end,\
args.nofollow,
)