Skip to content

Commit

Permalink
CLI: Show more of the title when updating feeds
Browse files Browse the repository at this point in the history
  • Loading branch information
thp committed Jul 12, 2012
1 parent c1dae9e commit dd125da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/gpo
Expand Up @@ -428,7 +428,7 @@ class gPodderCli(object):
return True

def _update_podcast(self, podcast):
self._start_action('Updating %s', podcast.title)
self._start_action(' %s', podcast.title)
try:
podcast.update()
self._finish_action()
Expand All @@ -442,6 +442,7 @@ class gPodderCli(object):
@FirstArgumentIsPodcastURL
def update(self, url=None):
count = 0
safe_print(_('Checking for new episodes'))
for podcast in self.client.get_podcasts():
if url is not None and podcast.url != url:
continue
Expand Down

0 comments on commit dd125da

Please sign in to comment.