10372:1444b4bee64b | 10373:093dcebe5ecb |
---|---|
233 @return sorted list of all site names (list of strings) | 233 @return sorted list of all site names (list of strings) |
234 """ | 234 """ |
235 if not self.__loaded: | 235 if not self.__loaded: |
236 self.__load() | 236 self.__load() |
237 | 237 |
238 return sorted(self.__logins.keys()) | 238 return sorted(self.__logins) |
239 | 239 |
240 def sitesCount(self): | 240 def sitesCount(self): |
241 """ | 241 """ |
242 Public method to get the number of available sites. | 242 Public method to get the number of available sites. |
243 | 243 |