def get_all_hosts(): return [('', 'Select a host')] + map(lambda x: (x, x), helpers.get_host_names())
def get_all_hosts(): return [('', _('Select a host'))] + [(x, x) for x in helpers.get_host_names()]
def get_all_hosts(): return [('', _('Select a host'))] + map(lambda x: (x, x), helpers.get_host_names())
def get_all_hosts(): return [("", "Select a host")] + map(lambda x: (x, x), helpers.get_host_names())