mirror of
https://gitlab.os-k.eu/os-k-team/os-k.git
synced 2023-08-25 14:03:10 +02:00
15 lines
239 B
Python
15 lines
239 B
Python
# don't mind this file
|
|
|
|
f1 = open("build/Makefile.out", "r+")
|
|
f2 = open("build/Makefile.out.2", "w+")
|
|
|
|
fl = f1.readlines()
|
|
for ln in fl:
|
|
if ln[0] == ' ' and ln[1] != ' ':
|
|
f2.write('\t')
|
|
f2.write(ln)
|
|
|
|
f1.close()
|
|
f2.close()
|
|
|