scripts/BlenderImporter/genblenddna.py: return 0 on success

pull/2392/head
Charlie Gettys 2019-03-27 13:10:17 -04:00
parent 51844b206d
commit 0292acd5a9
1 changed files with 3 additions and 1 deletions

View File

@ -292,6 +292,8 @@ def main():
output.write(templt.replace("<HERE>",s)) output.write(templt.replace("<HERE>",s))
# we got here, so no error
return 0
if __name__ == "__main__": if __name__ == "__main__":
sys.exit(main()) sys.exit(main())