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

don't fail when we pass gtk / gnome session args to Gajim. Fixes #6748

parent d05140a1
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
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