From f12f7e7b47218dd2e51fba89c235a7f09fb154a0 Mon Sep 17 00:00:00 2001 From: Date: Thu, 29 Dec 2011 21:43:12 +0100 Subject: [PATCH] Added a little transformatios to make sure all the parameters of the config are passed to string before calling the dbus method (integers for example). --- terminator | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminator b/terminator index 575bc604..f0f8a41a 100755 --- a/terminator +++ b/terminator @@ -76,7 +76,7 @@ if __name__ == '__main__': val = ' '.join(val) if val == True: val = 'True' - optionslist[opt] = val or '' + optionslist[opt] = val and '%s'%val or '' optionslist = dbus.Dictionary(optionslist, signature='ss') ipc.new_window(optionslist) sys.exit()