Skip to content

Commit

Permalink
Merge pull request #61 from Keeper-of-the-Keys/v4.17.1
Browse files Browse the repository at this point in the history
V4.17.1
  • Loading branch information
Keeper-of-the-Keys authored Sep 10, 2024
2 parents 225da4f + c54569c commit 163ab08
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion share/man/man1/gpo.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH GPO "1" "September 2024" "gpodder 4.17.0" "User Commands"
.TH GPO "1" "September 2024" "gpodder 4.17.1" "User Commands"
.SH NAME
gpo \- gPodder command-line interface
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion src/gpodder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
# This metadata block gets parsed by setup.py - use single quotes only
__tagline__ = 'Media and podcast aggregator'
__author__ = 'Thomas Perl <[email protected]>'
__version__ = '4.17.0'
__version__ = '4.17.1'
__date__ = '2024-09-10'
__relname__ = 'Achva'
__copyright__ = '© 2005-2024 Thomas Perl and the gPodder Team'
Expand Down
2 changes: 1 addition & 1 deletion src/gpodder/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ def sanitize_filename(filename, max_length=0, use_ascii=False):
but use only characters from the ASCII character set.
"""
if not isinstance(filename, str):
rasie Exception('filename is not a string')
raise Exception('filename is not a string')

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

0 comments on commit 163ab08

Please sign in to comment.