fix history manager since configpath has changed (see [8434]). fixes #3378
This commit is contained in:
parent
2f0cd8fdc6
commit
55aa74afc7
|
@ -102,7 +102,7 @@ class ConfigPaths:
|
||||||
# for k, v in paths.iteritems():
|
# for k, v in paths.iteritems():
|
||||||
# print "%s: %s" % (repr(k), repr(v))
|
# print "%s: %s" % (repr(k), repr(v))
|
||||||
|
|
||||||
def init_profile(self, profile):
|
def init_profile(self, profile = ''):
|
||||||
conffile = windowsify(u'config')
|
conffile = windowsify(u'config')
|
||||||
pidfile = windowsify(u'gajim')
|
pidfile = windowsify(u'gajim')
|
||||||
|
|
||||||
|
|
|
@ -26,6 +26,9 @@ import time
|
||||||
import locale
|
import locale
|
||||||
|
|
||||||
from common import i18n
|
from common import i18n
|
||||||
|
import common.configpaths
|
||||||
|
common.configpaths.gajimpaths.init()
|
||||||
|
common.configpaths.gajimpaths.init_profile()
|
||||||
import exceptions
|
import exceptions
|
||||||
import dialogs
|
import dialogs
|
||||||
import gtkgui_helpers
|
import gtkgui_helpers
|
||||||
|
|
Loading…
Reference in New Issue