Don't replace "-" when writing pair files

This commit is contained in:
Matthias
2021-11-28 15:08:02 +01:00
parent 7faa7539b4
commit 0d1324718c
2 changed files with 5 additions and 4 deletions

View File

@@ -109,7 +109,7 @@ def file_load_json(file):
def pair_to_filename(pair: str) -> str:
for ch in ['/', '-', ' ', '.', '@', '$', '+', ':']:
for ch in ['/', ' ', '.', '@', '$', '+', ':']:
pair = pair.replace(ch, '_')
return pair