コード例 #1
0
ファイル: forms.py プロジェクト: davideagle/adagios
def get_all_hosts():
    return [('', 'Select a host')] + map(lambda x: (x, x), helpers.get_host_names())
コード例 #2
0
ファイル: forms.py プロジェクト: binRick/adagios
def get_all_hosts():
    return [('', _('Select a host'))] + [(x, x)
                                         for x in helpers.get_host_names()]
コード例 #3
0
def get_all_hosts():
    return [('', _('Select a host'))] + map(lambda x:
                                            (x, x), helpers.get_host_names())
コード例 #4
0
ファイル: forms.py プロジェクト: spil-sean/adagios
def get_all_hosts():
    return [("", "Select a host")] + map(lambda x: (x, x), helpers.get_host_names())