fixed temp dir
This commit is contained in:
parent
acff0c350c
commit
1eda02be6c
2
setup.py
2
setup.py
@ -15,7 +15,7 @@ from distutils.core import setup
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='derailleur',
|
name='derailleur',
|
||||||
version='0.31',
|
version='0.32',
|
||||||
license='GPL3',
|
license='GPL3',
|
||||||
description=''''Derailleur is a unified collection of tools for the '''
|
description=''''Derailleur is a unified collection of tools for the '''
|
||||||
''''Transmission bittorrent client''',
|
''''Transmission bittorrent client''',
|
||||||
|
@ -27,7 +27,8 @@ class Torrent:
|
|||||||
self.torrent_path = stats.torrent_path
|
self.torrent_path = stats.torrent_path
|
||||||
self.torrent_ppath = stats.torrent_ppath
|
self.torrent_ppath = stats.torrent_ppath
|
||||||
self.move_lst, self.move_type_lst = [], []
|
self.move_lst, self.move_type_lst = [], []
|
||||||
self.tmp_folder = config['Postproc']['tmp_path']
|
#self.tmp_folder = config['Postproc']['tmp_path']
|
||||||
|
self.tmp_folder = TemporaryDirectory()
|
||||||
|
|
||||||
def manipulate(self):
|
def manipulate(self):
|
||||||
"""Changes files and variables before selecting the relevant files for
|
"""Changes files and variables before selecting the relevant files for
|
||||||
|
Loading…
Reference in New Issue
Block a user