Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2013-08-25 18:14:38 +0400
committerYann Leboulanger <asterix@lagaule.org>2013-08-25 18:14:38 +0400
commit31a753463b72d98685a4d383d574a899493d7b74 (patch)
tree28836efe4bef2dedf241ec27197a4be69ad1e7ba /src/gajim.py
parent9ab803ca632f81049134202825645d08c4fb9244 (diff)
handle config-path instead of config_path
Diffstat (limited to 'src/gajim.py')
-rw-r--r--src/gajim.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gajim.py b/src/gajim.py
index a5b17c043..bf50c5d2f 100644
--- a/src/gajim.py
+++ b/src/gajim.py
@@ -127,7 +127,7 @@ def parseOpts():
try:
shortargs = 'hqvl:p:c:'
# add gtk/gnome session option as gtk_get_option_group is not wrapped
- longargs = 'help quiet verbose loglevel= profile= config_path='
+ longargs = 'help quiet verbose loglevel= profile= config-path='
longargs += ' class= name= screen= gtk-module= sync g-fatal-warnings'
longargs += ' sm-client-id= sm-client-state-file= sm-disable'
opts = getopt.getopt(sys.argv[1:], shortargs, longargs.split())[0]