-v option is back (fix #430)
This commit is contained in:
parent
0634c6be61
commit
32686c2f71
|
@ -787,7 +787,9 @@ class Interface:
|
||||||
'statusmsgcolor': gajim.config.get('statusmsgcolor'),
|
'statusmsgcolor': gajim.config.get('statusmsgcolor'),
|
||||||
}
|
}
|
||||||
parser.read()
|
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
|
#add default emoticons is there is not in the config file
|
||||||
if len(gajim.config.get_per('emoticons')) == 0:
|
if len(gajim.config.get_per('emoticons')) == 0:
|
||||||
for emot in gajim.config.emoticons_default:
|
for emot in gajim.config.emoticons_default:
|
||||||
|
|
Loading…
Reference in New Issue