*** empty log message ***

This commit is contained in:
Dave Goodwin 2005-01-08 12:56:53 +00:00
parent 9c2c291a76
commit 6aa9788f85
2 changed files with 6 additions and 3 deletions

View file

@ -3,7 +3,7 @@ from distutils.core import setup, Extension
libdir = ['../../build/lib/i686-pc-win32']
setup(name="Cantera",
version="1.5.4",
version="1.5.5",
description="The Cantera Python Interface",
long_description="""
""",

View file

@ -1,2 +1,5 @@
from MixMaster import MixMaster
o = MixMaster()
try:
from MixMaster import MixMaster
o = MixMaster()
except:
i = input("MixMaster failed to start!")