diff --git a/README.md b/README.md index 82c7821..ba8e693 100644 --- a/README.md +++ b/README.md @@ -28,3 +28,5 @@ Please Check the repository wiki for Installation information. Officially marking this Fork as Beta. Join us in `#fHDHR `_ on Freenode. + +Due to multiple issues, I'm dropping support for Windows. Sorry. I'll accept PRs to alleviate this. diff --git a/fHDHR/cli/run.py b/fHDHR/cli/run.py index 773cbf0..00f7cd3 100644 --- a/fHDHR/cli/run.py +++ b/fHDHR/cli/run.py @@ -3,6 +3,7 @@ import sys import argparse import time import multiprocessing +import platform from fHDHR import fHDHR_VERSION, fHDHR_OBJ import fHDHR.exceptions @@ -18,6 +19,10 @@ if sys.version_info.major == 2 or sys.version_info < (3, 3): print('Error: fHDHR requires python 3.3+.') sys.exit(1) +opersystem = platform.system() +if opersystem in ["Windows"]: + print("WARNING: This script may fail on Windows.") + def build_args_parser(): """Build argument parser for fHDHR"""