- update Ifc parser generator script to assert if !python3

pull/16/merge
Alexander Gessler 2013-01-24 15:16:38 +01:00
parent 5ac2354da0
commit 19c9683b5f
1 changed files with 4 additions and 0 deletions

View File

@ -44,6 +44,10 @@
import sys, os, re
if sys.version_info < (3, 0):
print("must use python 3.0 or greater")
sys.exit(-2)
input_template_h = 'IFCReaderGen.h.template'
input_template_cpp = 'IFCReaderGen.cpp.template'