changeset 2bd43dd1fc2c in /home/hg/repos/gajim
details:http://hg.gajim.org/gajim?cmd=changeset;node=2bd43dd1fc2c
description: don't fail when we pass gtk / gnome session args to Gajim. Fixes
#6748
diffstat:
src/gajim.py | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diffs (14 lines):
diff -r ade83280fda6 -r 2bd43dd1fc2c src/gajim.py
--- a/src/gajim.py Mon May 09 20:32:48 2011 +0200
+++ b/src/gajim.py Wed May 11 20:02:16 2011 +0200
@@ -116,7 +116,10 @@
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
_______________________________________________
Commits mailing list
[email protected]
http://lists.gajim.org/cgi-bin/listinfo/commits