mirror of
https://github.com/fHDHR/fHDHR_NextPVR.git
synced 2025-12-06 13:06:59 -05:00
Merge pull request #51 from deathbybandaid/dev
Drop Support For Windows
This commit is contained in:
commit
261bf042f3
@ -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.
|
||||
|
||||
@ -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"""
|
||||
|
||||
Loading…
Reference in New Issue
Block a user