Skip to content

Commit 8aee907

Browse files
typo that I missed before release :x
1 parent 225da4f commit 8aee907

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)