Updated Ert to e2a5a9cc20705537d07822958d925e092a323367 to include new accesss to well rates

This commit is contained in:
Jacob Støren
2017-02-07 13:44:59 +01:00
parent 76bc449d1f
commit a6b7bc7c41
475 changed files with 12978 additions and 5850 deletions

View File

@@ -0,0 +1,14 @@
find_program(SPHINX_EXECUTABLE NAMES sphinx-build
HINTS
$ENV{SPHINX_DIR}
PATH_SUFFIXES bin
DOC "Sphinx documentation generator"
)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Sphinx DEFAULT_MSG
SPHINX_EXECUTABLE
)
mark_as_advanced(SPHINX_EXECUTABLE)

View File

@@ -21,7 +21,7 @@ shutil.copyfile( src_file , target_file )
shutil.copystat( src_file , target_file )
try:
py_compile.compile( target_file , doraise = True)
except Exception,error:
except Exception as error:
sys.exit("py_compile(%s) failed:%s" % (target_file , error))