Absubmit fix failing to load distutils.spawn

This commit is contained in:
inytar 2017-01-02 14:05:17 -05:00
parent b95c01fbea
commit 0975ee709b

View file

@ -24,7 +24,7 @@ import os
import subprocess import subprocess
import tempfile import tempfile
import distutils from distutils import spawn
import requests import requests
from beets import plugins from beets import plugins
@ -81,7 +81,7 @@ class AcousticBrainzSubmitPlugin(plugins.BeetsPlugin):
pass pass
# Get the executable location on the system, # Get the executable location on the system,
# needed to calculate the sha1 hash. # needed to calculate the sha1 hash.
self.extractor = distutils.spawn.find_executable(self.extractor) self.extractor = spawn.find_executable(self.extractor)
# Calculate extractor hash. # Calculate extractor hash.
self.extractor_sha = hashlib.sha1() self.extractor_sha = hashlib.sha1()