diff options
Diffstat (limited to 'OMChem')
-rw-r--r-- | OMChem/ConvReactor.py | 3 | ||||
-rw-r--r-- | OMChem/setup.py | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/OMChem/ConvReactor.py b/OMChem/ConvReactor.py index 9061294..ccdf524 100644 --- a/OMChem/ConvReactor.py +++ b/OMChem/ConvReactor.py @@ -12,7 +12,8 @@ class ConvReactor(): self.OM_data_eqn = '' self.OM_data_init = '' self.InputStms = [] - self.OutputStms = [] self.Tdef = str(Tdef) + self.OutputStms = [] + self.Tdef = str(Tdef) self.type = 'ConvReactor' self.EngStms = EngStms(name="EngStm") diff --git a/OMChem/setup.py b/OMChem/setup.py index 765aa04..037da1c 100644 --- a/OMChem/setup.py +++ b/OMChem/setup.py @@ -31,7 +31,7 @@ def generateIDL(): warningOrError(errorOnFailure, "Path not found: %s" % idl) return - if 0<>call(["omniidl","-bpython","-Wbglobal=_OMCIDL","-Wbpackage=OMPythonIDL",idl]): + if 0 is not call(["omniidl","-bpython","-Wbglobal=_OMCIDL","-Wbpackage=OMPythonIDL",idl]): warningOrError(errorOnFailure, "omniidl command failed") return print("Generated OMPythonIDL files") |