Skip to content
Snippets Groups Projects
Commit 32686c2f authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

-v option is back (fix #430)

parent 0634c6be
No related branches found
No related tags found
No related merge requests found
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment