From 41815f9996a0caabca43545e7a884a4da14ebc26 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger <asterix@lagaule.org> Date: Wed, 11 May 2011 20:02:16 +0200 Subject: [PATCH] don't fail when we pass gtk / gnome session args to Gajim. Fixes #6748 --- src/gajim.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gajim.py b/src/gajim.py index f866e4356b..e87349f9d3 100644 --- a/src/gajim.py +++ b/src/gajim.py @@ -116,7 +116,10 @@ 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 += ' 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] except getopt.error, msg1: print msg1 -- GitLab