fix history manager since configpath has changed (see [8434]). fixes #3378

This commit is contained in:
Yann Leboulanger 2007-08-19 22:51:40 +00:00
parent 2f0cd8fdc6
commit 55aa74afc7
2 changed files with 4 additions and 1 deletions

View File

@ -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')

View File

@ -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