init_var ==> init_vars
This commit is contained in:
parent
34255e5682
commit
2b86fc98da
|
@ -81,9 +81,9 @@ class Logger:
|
||||||
# this can happen only the first time (the time we create the db)
|
# this can happen only the first time (the time we create the db)
|
||||||
# db is not created here but in src/common/checks_paths.py
|
# db is not created here but in src/common/checks_paths.py
|
||||||
return
|
return
|
||||||
self.init_var()
|
self.init_vars()
|
||||||
|
|
||||||
def init_var(self):
|
def init_vars(self):
|
||||||
# if locked, wait up to 20 sec to unlock
|
# if locked, wait up to 20 sec to unlock
|
||||||
# before raise (hopefully should be enough)
|
# before raise (hopefully should be enough)
|
||||||
self.con = sqlite.connect(LOG_DB_PATH, timeout = 20.0,
|
self.con = sqlite.connect(LOG_DB_PATH, timeout = 20.0,
|
||||||
|
|
|
@ -1474,7 +1474,7 @@ if __name__ == '__main__':
|
||||||
gobject.timeout_add(500, wait_migration, m)
|
gobject.timeout_add(500, wait_migration, m)
|
||||||
gtk.main()
|
gtk.main()
|
||||||
# Init logger values (self.con/cur, jid_already_in)
|
# Init logger values (self.con/cur, jid_already_in)
|
||||||
gajim.logger.init_var()
|
gajim.logger.init_vars()
|
||||||
check_paths.check_and_possibly_create_paths()
|
check_paths.check_and_possibly_create_paths()
|
||||||
|
|
||||||
Interface()
|
Interface()
|
||||||
|
|
Loading…
Reference in New Issue