Update __main__.py

Trim down error message wording, making a suggestion was unnecessary.
This commit is contained in:
Michael Lazar
2019-02-14 14:51:08 -05:00
committed by GitHub
parent 9dcadd5193
commit 4741742e14

View File

@@ -19,8 +19,7 @@ try:
except ImportError:
if sys.platform == 'win32':
sys.exit('Fatal Error: This program is not compatible with Windows '
'Operating Systems.\nPlease try installing on either Linux '
'or Mac OS')
'Operating Systems.')
else:
sys.exit('Fatal Error: Your python distribution appears to be missing '
'_curses.so.\nWas it compiled without support for curses?')