From 32686c2f71fd27eec59b8aee3f5d1338fef604a8 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger <asterix@lagaule.org> Date: Mon, 13 Jun 2005 16:53:23 +0000 Subject: [PATCH] -v option is back (fix #430) --- src/gajim.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gajim.py b/src/gajim.py index 19c440f364..4140274be0 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -787,7 +787,9 @@ class Interface: 'statusmsgcolor': gajim.config.get('statusmsgcolor'), } parser.read() - gajim.verbose = gajim.config.get('verbose') + # Do not set gajim.verbose to False if -v option was given + if gajim.config.get('verbose'): + gajim.verbose = True #add default emoticons is there is not in the config file if len(gajim.config.get_per('emoticons')) == 0: for emot in gajim.config.emoticons_default: -- GitLab