update string printed when running gajim -h to show --config-path option

This commit is contained in:
Yann Leboulanger 2008-03-27 13:59:03 +00:00
parent d55c12763f
commit 1c313ed242
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ def parseOpts():
sys.exit(2)
for o, a in opts:
if o in ('-h', '--help'):
print 'gajim [--help] [--quiet] [--verbose] [--loglevel subsystem=level[,subsystem=level[...]]] [--profile name]'
print 'gajim [--help] [--quiet] [--verbose] [--loglevel subsystem=level[,subsystem=level[...]]] [--profile name] [--config-path]'
sys.exit()
elif o in ('-q', '--quiet'):
consoleloghandler.setLevel(logging.CRITICAL)