Browse Source

Change default savepaths

doc-issue-template
MrS0m30n3 8 years ago
parent
commit
3c84819eb1
1 changed files with 7 additions and 1 deletions
  1. 8
      youtube_dl_gui/optionsmanager.py

8
youtube_dl_gui/optionsmanager.py

@ -213,7 +213,13 @@ class OptionsManager(object):
#TODO Remove old options & check options validation
self.options = {
'save_path': os_path_expanduser('~'),
'save_path_dirs': [],
'save_path_dirs': [
os_path_expanduser('~'),
os.path.join(os_path_expanduser('~'), "Downloads"),
os.path.join(os_path_expanduser('~'), "Desktop"),
os.path.join(os_path_expanduser('~'), "Videos"),
os.path.join(os_path_expanduser('~'), "Music"),
],
'video_format': '0',
'second_video_format': '0',
'to_audio': False,

Loading…
Cancel
Save