Skip to content
This repository has been archived by the owner on Jan 6, 2020. It is now read-only.

Commit

Permalink
fix / in filename lead to wrong path (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
comwrg committed Oct 24, 2018
1 parent e894da7 commit 58361b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion for_lossless_music/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .song import songs2table, FoundSong, foundsong2table
from .download import download

__version__ = '0.0.3'
__version__ = '0.0.4'


def find_best_quality(songs):
Expand Down
2 changes: 1 addition & 1 deletion for_lossless_music/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def set_and_output_status(status):
if not best_quality:
print('Could not find')
sys.exit()
singer = '/'.join(songs[0].singers)
singer = ','.join(songs[0].singers)
input_path = os.path.abspath(args.output)
if args.classify:
input_path += '/' + singer
Expand Down

0 comments on commit 58361b3

Please sign in to comment.