mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-16 02:02:53 -07:00
fix import within extractor
update to 8.1
This commit is contained in:
parent
ba363fa65c
commit
838d60f721
4 changed files with 15 additions and 3 deletions
|
@ -42,7 +42,7 @@ Installation
|
|||
|
||||
### Windows
|
||||
|
||||
Download the the compiled versions of this code here [nzbToMedia - win - v8.0.zip](http://bit.ly/188imjs "nzbToMedia - win - v8.0.zip")
|
||||
Download the the compiled versions of this code from the links provided here [nzbToMedia installation](https://github.com/clinton-hall/nzbToMedia/wiki/installation")
|
||||
|
||||
### General
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Make things easy and less error prone by centralising all common values
|
||||
|
||||
# Global Constants
|
||||
VERSION = 'V8.0'
|
||||
VERSION = 'V8.1'
|
||||
|
||||
# Constants pertinant to SabNzb
|
||||
SABNZB_NO_OF_ARGUMENTS = 8
|
||||
|
|
|
@ -1,5 +1,17 @@
|
|||
Change_LOG / History
|
||||
|
||||
V8.1 04/05/2013
|
||||
|
||||
Impacts All
|
||||
Improved exception logging for error conditions
|
||||
|
||||
Impacts Torrents
|
||||
Fixed an import error when extracting
|
||||
|
||||
Impacts NZBs
|
||||
Fixed passthrough of nzbName from NZBGet to pass the .nzb extension (required for SickBeard's failed fork)
|
||||
|
||||
|
||||
V8.0 28/04/2013
|
||||
|
||||
Impacts All
|
||||
|
|
|
@ -3,7 +3,7 @@ import sys
|
|||
sys.path.insert(0, os.path.join(os.path.dirname(sys.argv[0]),'autoProcess/'))
|
||||
import logging
|
||||
from subprocess import call, Popen, PIPE
|
||||
from nzbToMediaUtil import create_destination
|
||||
from autoProcess.nzbToMediaUtil import create_destination
|
||||
|
||||
|
||||
Logger = logging.getLogger()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue