fix import within extractor

update to 8.1
This commit is contained in:
clinton-hall 2013-05-04 09:37:51 +09:30
parent ba363fa65c
commit 838d60f721
4 changed files with 15 additions and 3 deletions

View file

@ -42,7 +42,7 @@ Installation
### Windows ### 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 ### General

View file

@ -1,7 +1,7 @@
# Make things easy and less error prone by centralising all common values # Make things easy and less error prone by centralising all common values
# Global Constants # Global Constants
VERSION = 'V8.0' VERSION = 'V8.1'
# Constants pertinant to SabNzb # Constants pertinant to SabNzb
SABNZB_NO_OF_ARGUMENTS = 8 SABNZB_NO_OF_ARGUMENTS = 8

View file

@ -1,5 +1,17 @@
Change_LOG / History 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 V8.0 28/04/2013
Impacts All Impacts All

View file

@ -3,7 +3,7 @@ import sys
sys.path.insert(0, os.path.join(os.path.dirname(sys.argv[0]),'autoProcess/')) sys.path.insert(0, os.path.join(os.path.dirname(sys.argv[0]),'autoProcess/'))
import logging import logging
from subprocess import call, Popen, PIPE from subprocess import call, Popen, PIPE
from nzbToMediaUtil import create_destination from autoProcess.nzbToMediaUtil import create_destination
Logger = logging.getLogger() Logger = logging.getLogger()