Remove tabs from track titles

Reference to https://git.rip/RemixDev/deemix-pyweb/-/issues/17
master
RemixDev 2021-01-31 20:35:31 +01:00
parent e9434ceeb6
commit 054a4f4fdf
No known key found for this signature in database
GPG Key ID: B33962B465BDB51C
2 changed files with 6 additions and 2 deletions

View File

@ -152,6 +152,10 @@ class Track:
if not self.copyright: self.copyright = albumAPI_gw['COPYRIGHT']
self.parseTrack(trackAPI)
# Remove unwanted charaters in track name
# Example: track/127793
self.title = ' '.join(self.title.split())
# Make sure there is at least one artist
if not len(self.artist['Main']):
self.artist['Main'] = [self.mainArtist['name']]

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
rm -rd build
rm -rd dist
bump
bump deemix/__init__.py
python -m bump
python -m bump deemix/__init__.py
python3 setup.py sdist bdist_wheel
python3 -m twine upload dist/*