Skip to content

Commit 163ab08

Browse files
Merge pull request #61 from Keeper-of-the-Keys/v4.17.1
V4.17.1
2 parents 225da4f + c54569c commit 163ab08

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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" "September 2024" "gpodder 4.17.0" "User Commands"
1+
.TH GPO "1" "September 2024" "gpodder 4.17.1" "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.17.0'
53+
__version__ = '4.17.1'
5454
__date__ = '2024-09-10'
5555
__relname__ = 'Achva'
5656
__copyright__ = '© 2005-2024 Thomas Perl and the gPodder Team'

src/gpodder/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ def sanitize_filename(filename, max_length=0, use_ascii=False):
716716
but use only characters from the ASCII character set.
717717
"""
718718
if not isinstance(filename, str):
719-
rasie Exception('filename is not a string')
719+
raise Exception('filename is not a string')
720720

721721
if max_length > 0 and len(filename) > max_length:
722722
logger.info('Limiting file/folder name "%s" to %d characters.', filename, max_length)

0 commit comments

Comments
 (0)