Post process script for fan kickstart

Addresses #3308
This commit is contained in:
Joseph Lenox 2016-06-02 11:43:34 -05:00
parent 7b334bf2e5
commit 5e17746427

View File

@ -0,0 +1,13 @@
#!/usr/bin/python
import sys
import re
sea = re.compile("M106 S[1-9]+[0-9]*")
rep = re.compile("M106 S255\n\g<0>")
out = open(sys.argv[1]+"_fixed", 'w')
with open(sys.argv[1]) as f:
for r in f:
if re.search(sea, r) is not None:
out.write(re.sub(sea,"M106 S255\n\g<0>",r))
else:
out.write(r)