diff --git a/tubesync/sync/models.py b/tubesync/sync/models.py index be62ab6c..f303f123 100644 --- a/tubesync/sync/models.py +++ b/tubesync/sync/models.py @@ -853,7 +853,7 @@ class Media(models.Model): ''' fetch the first key with a value from metadata ''' - + if arg_dict is None: arg_dict = self.loaded_metadata assert isinstance(arg_dict, dict), type(arg_dict) @@ -932,7 +932,7 @@ class Media(models.Model): return str(fmt.get('id')) return False return False - + def get_display_format(self, format_str): ''' Returns a tuple used in the format component of the output filename. This @@ -1230,7 +1230,7 @@ class Media(models.Model): metadata = self.index_metadata() if self.skip: return False - + response = metadata if getattr(settings, 'SHRINK_NEW_MEDIA_METADATA', False): response = filter_response(metadata, True)