Mercurial > libervia-backend
diff src/core/sat_main.py @ 1374:0befb14ecf62
renamed tools.misc to tools.trigger
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 19 Mar 2015 19:44:37 +0100 |
parents | ba87b940f07a |
children | 3a20312d4012 |
line wrap: on
line diff
--- a/src/core/sat_main.py Thu Mar 19 14:41:15 2015 +0100 +++ b/src/core/sat_main.py Thu Mar 19 19:44:37 2015 +0100 @@ -32,7 +32,7 @@ from sat.core.constants import Const as C from sat.memory.memory import Memory from sat.memory.crypto import PasswordHasher -from sat.tools.misc import TriggerManager +from sat.tools import trigger from sat.stdui import ui_contact_list, ui_profile_manager from glob import glob from uuid import uuid4 @@ -72,7 +72,7 @@ self.plugins = {} self.memory = Memory(self) - self.trigger = TriggerManager() # trigger are used to change SàT behaviour + self.trigger = trigger.TriggerManager() # trigger are used to change SàT behaviour try: self.bridge = DBusBridge()