132 @return sorted list of all host names (list of strings) |
132 @return sorted list of all host names (list of strings) |
133 """ |
133 """ |
134 if not self.__loaded: |
134 if not self.__loaded: |
135 self.__load() |
135 self.__load() |
136 |
136 |
137 return sorted(self.__agents.keys()) |
137 return sorted(self.__agents) |
138 |
138 |
139 def hostsCount(self): |
139 def hostsCount(self): |
140 """ |
140 """ |
141 Public method to get the number of available user agent settings. |
141 Public method to get the number of available user agent settings. |
142 |
142 |