Python: updated AppInfo.py to reflect merger of App and Instance

This commit is contained in:
Gaute Lindkvist
2019-08-26 15:56:19 +02:00
parent 1f90323462
commit 6cd37e1130

View File

@@ -2,5 +2,5 @@ import rips
resInsight = rips.Instance.find() resInsight = rips.Instance.find()
if resInsight is not None: if resInsight is not None:
print(resInsight.app.versionString()) print(resInsight.versionString())
print("Is this a console run?", resInsight.app.isConsole()) print("Is this a console run?", resInsight.isConsole())