Skip to content

Commit 1913398

Browse files
Merge pull request #34 from Keeper-of-the-Keys/bugfix-4.11.2
Bugfix 4.11.2
2 parents 9e59ad2 + d4472d7 commit 1913398

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

share/man/man1/gpo.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH GPO "1" "April 2020" "gpodder 4.11.1" "User Commands"
1+
.TH GPO "1" "April 2020" "gpodder 4.11.2" "User Commands"
22
.SH NAME
33
gpo \- gPodder command-line interface
44
.SH SYNOPSIS

src/gpodder/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
# This metadata block gets parsed by setup.py - use single quotes only
5151
__tagline__ = 'Media and podcast aggregator'
5252
__author__ = 'Thomas Perl <[email protected]>'
53-
__version__ = '4.11.1'
53+
__version__ = '4.11.2'
5454
__date__ = '2020-04-10'
5555
__relname__ = 'Geshem'
5656
__copyright__ = '© 2005-2020 Thomas Perl and the gPodder Team'

src/gpodder/model.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -566,8 +566,9 @@ def check_download_folder(self):
566566

567567
known_files.add(filename)
568568

569-
known_files.update(os.path.join(self.cover_file + ext)
570-
for ext in coverart.CoverDownloader.EXTENSIONS)
569+
if self.cover_file:
570+
known_files.update(os.path.join(self.cover_file + ext)
571+
for ext in coverart.CoverDownloader.EXTENSIONS)
571572

572573
for episode in self.episodes:
573574
filename = episode.art_file

0 commit comments

Comments
 (0)