From 48614d6cf04518a95bad4d9893a63a5c4f99b653 Mon Sep 17 00:00:00 2001 From: mathieui Date: Mon, 6 May 2013 20:20:47 +0200 Subject: Fix #2286 Also fix the copy of the default config if -f is used --- src/core.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/core.py') diff --git a/src/core.py b/src/core.py index 3b0b490e..dbc65930 100644 --- a/src/core.py +++ b/src/core.py @@ -50,7 +50,7 @@ import bookmark from plugin_manager import PluginManager from data_forms import DataFormsTab -from config import config +from config import config, firstrun from logger import logger from roster import roster from contact import Contact, Resource @@ -330,13 +330,13 @@ class Core(object): default_tab.on_gain_focus() self.tabs.append(default_tab) self.information(_('Welcome to poezio!')) - if config.get('firstrun', ''): + if firstrun: self.information(_( - 'It seems that it is the first time you start poezio.\n' + \ - 'The online help is here http://poezio.eu/en/documentation.php.\n' + \ - 'By default, you are in poezio’s chatroom, where you can ask for help or tell us how great it is.\n' + \ - 'Just press Ctrl-n.' \ - )) + 'It seems that it is the first time you start poezio.\n' + 'The online help is here http://poezio.eu/doc/en/\n' + 'No room is joined by default, but you can join poezio’s chatroom ' + '(with /join poezio@muc.poezio.eu), where you can ask for help or tell us how great it is.' + ), 'Help') self.refresh_window() def on_exception(self, typ, value, trace): -- cgit v1.2.3