From 9dcadd5193c14db6b1b397e4d1198ba84f01da40 Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Thu, 14 Feb 2019 14:40:10 -0500 Subject: [PATCH 1/2] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index f22fbd6..c4f8876 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: From 4741742e14488e851c85d6f0d1a5f662f0655307 Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Thu, 14 Feb 2019 14:51:08 -0500 Subject: [PATCH 2/2] Update __main__.py Trim down error message wording, making a suggestion was unnecessary. --- rtv/__main__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rtv/__main__.py b/rtv/__main__.py index 2ece43f..d26e8a1 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?')