-v option is back (fix #430)

This commit is contained in:
Yann Leboulanger 2005-06-13 16:53:23 +00:00
parent 0634c6be61
commit 32686c2f71
1 changed files with 3 additions and 1 deletions

View File

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