comparison frontends/src/jp/cmd_profile.py @ 1969:5fbe09b9b568

merged main branch
author Goffi <goffi@goffi.org>
date Fri, 24 Jun 2016 22:41:28 +0200
parents 3e168cde7a7d 227a4e617549
children 1d3f73e065e1
comparison
equal deleted inserted replaced
1967:de6faf9be715 1969:5fbe09b9b568
103 self.showNextValue() 103 self.showNextValue()
104 104
105 105
106 class ProfileList(base.CommandBase): 106 class ProfileList(base.CommandBase):
107 def __init__(self, host): 107 def __init__(self, host):
108 super(ProfileList, self).__init__(host, 'list', use_profile=False, help=_('list profiles')) 108 super(ProfileList, self).__init__(host, 'list', use_profile=False, use_output='list', help=_('list profiles'))
109 109
110 def add_parser_options(self): 110 def add_parser_options(self):
111 pass 111 pass
112 112
113 def start(self): 113 def start(self):
114 for profile in self.host.bridge.getProfilesList(): 114 self.output(self.host.bridge.getProfilesList())
115 print profile
116 115
117 116
118 class ProfileCreate(base.CommandBase): 117 class ProfileCreate(base.CommandBase):
119 def __init__(self, host): 118 def __init__(self, host):
120 super(ProfileCreate, self).__init__(host, 'create', use_profile=False, help=_('create a new profile')) 119 super(ProfileCreate, self).__init__(host, 'create', use_profile=False, help=_('create a new profile'))