mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-30 19:40:03 -07:00
23 lines
651 B
Python
23 lines
651 B
Python
# Make things easy and less error prone by centralising all common values
|
|
|
|
# Global Constants
|
|
VERSION = 'V9.3'
|
|
TimeOut = 60
|
|
|
|
# Constants pertinant to SabNzb
|
|
SABNZB_NO_OF_ARGUMENTS = 8
|
|
SABNZB_0717_NO_OF_ARGUMENTS = 9
|
|
|
|
# Constants pertaining to SickBeard Branches:
|
|
fork_default = "default"
|
|
fork_failed = "failed"
|
|
fork_failed_torrent = "failed-torrent"
|
|
|
|
forks = {}
|
|
forks[fork_default] = {"dir": None, "process": None}
|
|
forks[fork_failed] = {"dirName": None, "failed": None}
|
|
forks[fork_failed_torrent] = {"dir": None, "failed": None, "process_method": None}
|
|
|
|
SICKBEARD_FAILED = [fork_failed, fork_failed_torrent]
|
|
SICKBEARD_TORRENT = [fork_failed_torrent]
|
|
|