From 4c1dfe445e18d3fb8c3b80e963e7650d6f9f55e3 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 2 Dec 2005 17:19:04 +0000 Subject: [PATCH] don't migrate now, migration window is not ready --- src/gajim.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/gajim.py b/src/gajim.py index 327e53b10..89491c524 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -76,7 +76,6 @@ LOG_DB_PATH = logger.LOG_DB_PATH NO_DB = False if not os.path.isfile(LOG_DB_PATH): NO_DB = True -check_paths.check_and_possibly_create_paths() path = os.getcwd() if '.svn' in os.listdir(path) or '_svn' in os.listdir(path): @@ -1463,11 +1462,9 @@ if __name__ == '__main__': # Migrate old logs if user wants that if NO_DB: - dialog = dialogs.ConfirmationDialog(_('Do you want to migrate your logs?'), _('It is the first time you run Gajim since the way logs are stored has changed. Gajim can migrate your logs at this state. Migrate?')) - if dialog.get_response() == gtk.RESPONSE_OK: - from common import migrate_logs_to_dot9_db - migrate_logs_to_dot9_db.migrate() + pass # launch migration script del NO_DB + check_paths.check_and_possibly_create_paths() Interface() gtk.main()