making them auto update

This commit is contained in:
ViktorBarzin 2017-07-09 00:01:28 +03:00
parent 1cb47a0cc3
commit 579068034d
1056 changed files with 4 additions and 126967 deletions

View file

@ -1,13 +0,0 @@
#!/usr/bin/env python
from __future__ import print_function
from sys import argv, exit
if len(argv) != 2:
exit(1)
try:
compile(open(argv[1]).read(), argv[1], 'exec', 0, 1)
except SyntaxError as err:
print('%s:%s:%s: %s' % (err.filename, err.lineno, err.offset, err.msg))