mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-20 21:33:13 -07:00
fix for remote paths. #551
This commit is contained in:
parent
5a91d0774b
commit
cb126c3644
1 changed files with 1 additions and 0 deletions
|
@ -334,6 +334,7 @@ def initialize(section=None):
|
|||
|
||||
REMOTEPATHS = CFG["Network"]["mount_points"] or None
|
||||
if REMOTEPATHS:
|
||||
if isinstance(REMOTEPATHS, list): REMOTEPATHS = ','.join(REMOTEPATHS) # fix in case this imported as list.
|
||||
REMOTEPATHS = [ tuple(item.split(',')) for item in REMOTEPATHS.split('|') ] # /volume1/Public/,E:\|/volume2/share/,\\NAS\
|
||||
|
||||
devnull = open(os.devnull, 'w')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue