diff --git a/README.md b/README.md index 7288dee..f265edf 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,10 @@ $ cd rtv $ python setup.py install ``` +### Windows + +RTV is not supported on Windows. + ## Usage To run the program, type: diff --git a/rtv/__main__.py b/rtv/__main__.py index 1e8a06c..cca0588 100755 --- a/rtv/__main__.py +++ b/rtv/__main__.py @@ -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?')