From e3720b31f0f96624cdc7134453feb98d2c38f7d4 Mon Sep 17 00:00:00 2001 From: Safihre Date: Thu, 30 Apr 2020 09:11:04 +0200 Subject: [PATCH] Update releasenotes and print missing module Closes #1411 --- README.mkd | 3 ++- SABnzbd.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.mkd b/README.mkd index 611287b..72de069 100644 --- a/README.mkd +++ b/README.mkd @@ -19,7 +19,8 @@ But we still managed to add a few, like extracting fully obfuscated RAR-sets. - The Windows installer is 64-bit only, for 32-bit use the standalone package. - Growl-support was removed. - macOS features such as the menu and notifications now use native code. -- Built-in internet bandwith test. +- Built-in internet bandwidth test. +- TLS1.3 support for newsserver connections. ## Bugfixes since 2.3.9 - Sample removal did not work if only 1 sample file was present. diff --git a/SABnzbd.py b/SABnzbd.py index cd8554b..d316d9d 100755 --- a/SABnzbd.py +++ b/SABnzbd.py @@ -46,8 +46,9 @@ try: except ValueError: print("Sorry, requires Python module Cheetah 3 or higher.") sys.exit(1) -except ImportError: +except ImportError as e: print("Not all required Python modules are available, please check requirements.txt") + print("Missing module:", e.name) print("You can read more at: https://sabnzbd.org/python3") print("If you still experience problems, remove all .pyc files in this folder and subfolders") sys.exit(1)