From 2e62b3f2cc3d9e10c8f8b2153d8b38d0e83aa65c Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 27 Feb 2011 19:01:51 +0100 Subject: [PATCH] [sulfur] fix execution with newer kdesu (4.6) --- sulfur/misc/sulfur | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sulfur/misc/sulfur b/sulfur/misc/sulfur index b67ae4616..b99756edf 100755 --- a/sulfur/misc/sulfur +++ b/sulfur/misc/sulfur @@ -44,7 +44,7 @@ def setup_env(): for item in path: itempath = os.path.join(item, 'kdesu') if os.access(itempath,os.X_OK): - su_cmd = itempath+' "' + sulfur_path + '"' + su_cmd = itempath + ' -- ' + sulfur_path break else: if os.access('/usr/bin/gksu', os.X_OK):