parse: Run gofmt after generating boilerplate.

This commit is contained in:
Qi Xiao 2016-02-20 17:10:44 +01:00
parent a1a495cc09
commit 5dee621830

View File

@ -1,5 +1,6 @@
#!/usr/bin/python2.7 #!/usr/bin/python2.7
import re import re
import os
def put_set(out, parent, field, child): def put_set(out, parent, field, child):
@ -60,6 +61,8 @@ def main():
if m: if m:
typename, extraargs = m.groups() typename, extraargs = m.groups()
put_parse(out, typename, extraargs) put_parse(out, typename, extraargs)
out.close()
os.system('gofmt -w boilerplate.go')
if __name__ == '__main__': if __name__ == '__main__':