Fix names in config file

This commit is contained in:
Magnus Walbeck 2021-01-30 13:22:27 +01:00
parent 793b414426
commit 14096a796c
Signed by: mwalbeck
GPG key ID: CCB78CFF3F950769
3 changed files with 15 additions and 12 deletions

View file

@ -4,5 +4,8 @@
"[python]": {
"editor.tabSize": 4,
"editor.rulers": [88]
}
},
"python.formatting.provider": "black",
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
}

View file

@ -10,14 +10,14 @@ Podweasels main configuration file is called `.podweasel.json` and should be loc
```
{
"podcast-directory" : "/home/<USER>/podcasts",
"podcast_directory" : "/home/<USER>/podcasts",
"maxnum" : 5,
"cover-image" : true,
"cover-image-name" : "folder",
"rename-episodes" : true,
"date-format" : "%Y-%m-%d",
"connection-timeout" : 10,
"conncetion-retries" : 3
"cover_image" : true,
"cover_image_name" : "folder",
"rename_episodes" : true,
"date_format" : "%Y-%m-%d",
"connection_timeout" : 10,
"conncetion_retries" : 3
}
```

View file

@ -66,7 +66,7 @@ def print_green(s):
def get_folder(shortname):
base = CONFIGURATION["podcast-directory"]
base = CONFIGURATION["podcast_directory"]
return os.path.join(base, shortname)
@ -306,7 +306,7 @@ def get_original_filename(url):
def file_exists(shortname, filename):
base = CONFIGURATION["podcast-directory"]
base = CONFIGURATION["podcast_directory"]
if os.path.exists(os.path.join(base, shortname, filename)):
return True
@ -350,7 +350,7 @@ def download_multiple(feed, maxnum):
def download_single(folder, url, filename):
print(url)
base = CONFIGURATION["podcast-directory"]
base = CONFIGURATION["podcast_directory"]
if "connection_timeout" in CONFIGURATION:
connection_timeout = CONFIGURATION["connection_timeout"]
@ -415,7 +415,7 @@ def available_feeds():
contain a json configuration file describing which elements
have been downloaded already, and how many will be kept.
"""
base = CONFIGURATION["podcast-directory"]
base = CONFIGURATION["podcast_directory"]
paths = [
p
for p in os.listdir(base)