Mercurial > libervia-backend
diff src/core/sat_main.py @ 1032:b262ae6d53af
stdui: add ui_profile_manager to interact with frontends when profile authentication is needed
author | souliane <souliane@mailoo.org> |
---|---|
date | Wed, 07 May 2014 16:03:38 +0200 |
parents | 15f43b54d697 |
children | 6e975c6b0faf |
line wrap: on
line diff
--- a/src/core/sat_main.py Mon May 12 17:51:38 2014 +0200 +++ b/src/core/sat_main.py Wed May 07 16:03:38 2014 +0200 @@ -33,7 +33,7 @@ from sat.memory.memory import Memory from sat.memory.crypto import PasswordHasher from sat.tools.misc import TriggerManager -from sat.stdui import ui_contact_list +from sat.stdui import ui_contact_list, ui_profile_manager from glob import glob from uuid import uuid4 import sys @@ -146,6 +146,7 @@ log.info(_("Memory initialised")) self._import_plugins() ui_contact_list.ContactList(self) + ui_profile_manager.ProfileManager(self) self._initialised.callback(None) def _import_plugins(self):