mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-14 02:26:53 -07:00
absolute path for autoProcess folder
This commit is contained in:
parent
41b9607119
commit
801c9de31f
1 changed files with 2 additions and 2 deletions
|
@ -1,9 +1,9 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
#System imports
|
||||
import sys
|
||||
sys.path.insert(0, 'autoProcess/') # add this folder to path as this allows out-of-sight files to be called.
|
||||
import os
|
||||
import sys
|
||||
sys.path.insert(0, os.path.join(os.path.dirname(sys.argv[0]),'autoProcess/'))
|
||||
import ConfigParser
|
||||
import shutil
|
||||
import logging
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue