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():
|
||||
# print "%s: %s" % (repr(k), repr(v))
|
||||
|
||||
def init_profile(self, profile):
|
||||
def init_profile(self, profile = ''):
|
||||
conffile = windowsify(u'config')
|
||||
pidfile = windowsify(u'gajim')
|
||||
|
||||
|
|
|
@ -26,6 +26,9 @@ import time
|
|||
import locale
|
||||
|
||||
from common import i18n
|
||||
import common.configpaths
|
||||
common.configpaths.gajimpaths.init()
|
||||
common.configpaths.gajimpaths.init_profile()
|
||||
import exceptions
|
||||
import dialogs
|
||||
import gtkgui_helpers
|
||||
|
|
Loading…
Reference in New Issue