Fixed invalid detection of S3 backend in analyzer

This commit is contained in:
Albert Santoni 2015-02-26 12:02:02 -05:00
parent bfd6ef72b1
commit edd07c18ae
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ class AnalyzerPipeline:
metadata = ReplayGainAnalyzer.analyze(audio_file_path, metadata)
metadata = PlayabilityAnalyzer.analyze(audio_file_path, metadata)
if storage_backend.lower() == "amazon_S3":
if storage_backend.lower() == u"amazon_s3":
csu = CloudStorageUploader(cloud_storage_config)
metadata = csu.upload_obj(audio_file_path, metadata)
else: