1
0
mirror of https://github.com/fHDHR/fHDHR_NextPVR.git synced 2025-12-06 05:26:57 -05:00

Drop Support For Windows

This commit is contained in:
deathbybandaid 2020-11-13 15:13:52 -05:00
parent 701f8a99c2
commit 0721ddbdd9
2 changed files with 7 additions and 0 deletions

View File

@ -28,3 +28,5 @@ Please Check the repository wiki for Installation information.
Officially marking this Fork as Beta.
Join us in `#fHDHR <irc://irc.freenode.net/#fHDHR>`_ on Freenode.
Due to multiple issues, I'm dropping support for Windows. Sorry. I'll accept PRs to alleviate this.

View File

@ -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"""