Skip to content

Commit

Permalink
fix call to class method
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalec committed Feb 21, 2023
1 parent 2115adc commit 3679341
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sonus/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__PKGNAME__ = "sonus"
__VERSION__ = "0.6.1"
__VERSION__ = "0.6.2"
2 changes: 1 addition & 1 deletion sonus/downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def _extract_author_title_urls_parts(self, odm_filename):
odm_root, metadata = self._get_odm_root_and_metadata(odm_filename)
author = self._get_author_from_metadata(metadata)
title = metadata.findtext('Title')
title = clean_title(title)
title = self.clean_title(title)
cover_url = metadata.findtext('CoverUrl', '')
logger.info('Got title "{}" and author'.format(title)
+ ('s' if ';' in author else '')
Expand Down

0 comments on commit 3679341

Please sign in to comment.