class DownloadTV::Torrent

def get_links(show)

def get_links(show)
  links = @g_instances.first.get_links(show)
  reset_grabbers_order
  reset_tries
  links
rescue NoTorrentsError
  # Use next grabber
  if @tries.positive?
    @tries -= 1
    change_grabbers
    retry
  else
    reset_grabbers_order
    reset_tries
    puts "No torrents found for #{show}"
    []
  end
end