Removed acoustid support, as the integration was buggy and error-prone (#106)

This commit is contained in:
Eliot Berriot 2018-05-21 19:55:06 +02:00
commit 7b71463ef8
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
7 changed files with 27 additions and 84 deletions

View file

@ -54,13 +54,6 @@ class Command(BaseCommand):
'import and not much disk space available.'
)
)
parser.add_argument(
'--no-acoustid',
action='store_true',
dest='no_acoustid',
default=False,
help='Use this flag to completely bypass acoustid completely',
)
parser.add_argument(
'--noinput', '--no-input', action='store_false', dest='interactive',
help="Do NOT prompt the user for input of any kind.",
@ -118,7 +111,6 @@ class Command(BaseCommand):
len(filtered['new'])))
self.stdout.write('Selected options: {}'.format(', '.join([
'no acoustid' if options['no_acoustid'] else 'use acoustid',
'in place' if options['in_place'] else 'copy music files',
])))
if len(filtered['new']) == 0:
@ -201,4 +193,4 @@ class Command(BaseCommand):
job.save()
import_handler(
import_job_id=job.pk,
use_acoustid=not options['no_acoustid'])
use_acoustid=False)