diff options
author | pravindalve | 2020-10-01 17:41:47 +0530 |
---|---|---|
committer | pravindalve | 2020-10-01 17:41:47 +0530 |
commit | cefac083d8a23787a1c1792a0d87ca08637fd3c4 (patch) | |
tree | af3894fbbb0594294620241639679c433858bd89 /OMChem/setup.py | |
parent | 2e8e9cf48cbc3256c85d9a38f25f51f90f464732 (diff) | |
download | Chemical-Simulator-GUI-cefac083d8a23787a1c1792a0d87ca08637fd3c4.tar.gz Chemical-Simulator-GUI-cefac083d8a23787a1c1792a0d87ca08637fd3c4.tar.bz2 Chemical-Simulator-GUI-cefac083d8a23787a1c1792a0d87ca08637fd3c4.zip |
Partial fix for issue #5 and issue #7, requirements.txt added
Diffstat (limited to 'OMChem/setup.py')
-rw-r--r-- | OMChem/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
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") |