reorder imports in history_manager so that it can bu run. Fixes #5391
This commit is contained in:
parent
cb1fcc8cf8
commit
d19df32c16
|
@ -83,15 +83,15 @@ common.configpaths.gajimpaths.init(config_path)
|
||||||
del config_path
|
del config_path
|
||||||
common.configpaths.gajimpaths.init_profile()
|
common.configpaths.gajimpaths.init_profile()
|
||||||
from common import exceptions
|
from common import exceptions
|
||||||
import dialogs
|
from common import gajim
|
||||||
import gtkgui_helpers
|
import gtkgui_helpers
|
||||||
from common.logger import LOG_DB_PATH, constants
|
from common.logger import LOG_DB_PATH, constants
|
||||||
|
|
||||||
#FIXME: constants should implement 2 way mappings
|
#FIXME: constants should implement 2 way mappings
|
||||||
status = dict((constants.__dict__[i], i[5:].lower()) for i in \
|
status = dict((constants.__dict__[i], i[5:].lower()) for i in \
|
||||||
constants.__dict__.keys() if i.startswith('SHOW_'))
|
constants.__dict__.keys() if i.startswith('SHOW_'))
|
||||||
from common import gajim
|
|
||||||
from common import helpers
|
from common import helpers
|
||||||
|
import dialogs
|
||||||
|
|
||||||
# time, message, subject
|
# time, message, subject
|
||||||
(
|
(
|
||||||
|
|
Loading…
Reference in New Issue