Remove space between 'more' and ellipsis character.

This commit is contained in:
auouymous 2022-06-07 13:37:13 -06:00
parent f8d1b22909
commit ce6ba8eced
1 changed files with 1 additions and 1 deletions

View File

@ -2931,7 +2931,7 @@ class gPodder(BuilderWidget, dbus.service.Object):
for index, thing in zip(range(max_things), things):
titles.append('' + (html.escape(thing.title if len(thing.title) <= max_length else thing.title[:max_length] + '')))
if len(things) > max_things:
titles.append('+%(count)d more ' % {'count': len(things) - max_things})
titles.append('+%(count)d more' % {'count': len(things) - max_things})
return '\n'.join(titles) + '\n\n' + message
def delete_episode_list(self, episodes, confirm=True, callback=None, undownload=False):