Skip to content

Commit

Permalink
fix missing dot
Browse files Browse the repository at this point in the history
  • Loading branch information
elelay committed Apr 8, 2019
1 parent 1b018a3 commit 4e2ef79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion share/gpodder/extensions/rename_download.py
Expand Up @@ -63,7 +63,7 @@ def make_filename(self, current_filename, title, sortdate, podcast_title):
ext,
PodcastEpisode.MAX_FILENAME_LENGTH,
PodcastEpisode.MAX_FILENAME_WITH_EXT_LENGTH)
new_filename = os.path.join(dirname, new_basename + ext)
new_filename = os.path.join(dirname, new_basename + '.' + ext)

if new_filename == current_filename:
return current_filename
Expand Down

0 comments on commit 4e2ef79

Please sign in to comment.