Skip to content

Commit

Permalink
More consistent quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
zas committed Sep 20, 2023
1 parent 115de5d commit b80c08c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions picard/coverart/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def _coverart_downloaded(self, coverartimage, data, http, error):
self.album._requests -= 1

if error:
self.album.error_append('Coverart error: %s' % http.errorString())
self.album.error_append("Coverart error: %s" % http.errorString())
elif len(data) < 1000:
log.warning("Not enough data, skipping %s", coverartimage)
else:
Expand Down Expand Up @@ -125,9 +125,9 @@ def next_in_queue(self):

config = get_config()
if (self.front_image_found
and config.setting["save_images_to_tags"]
and not config.setting["save_images_to_files"]
and config.setting["embed_only_one_front_image"]):
and config.setting['save_images_to_tags']
and not config.setting['save_images_to_files']
and config.setting['embed_only_one_front_image']):
# no need to continue
self.album._finalize_loading(None)
return
Expand Down

0 comments on commit b80c08c

Please sign in to comment.