diff options
author | necoro <> | 2007-03-31 20:53:44 +0000 |
---|---|---|
committer | necoro <> | 2007-03-31 20:53:44 +0000 |
commit | 39af97830aacfc2eee1b51b45423e0245898b5bf (patch) | |
tree | d01232b8d3ab1781d4ebb134673010353a4ee76b | |
parent | 5223b0ea180b7dbfd77ba52f1355328f1558c884 (diff) | |
download | portato-39af97830aacfc2eee1b51b45423e0245898b5bf.tar.gz portato-39af97830aacfc2eee1b51b45423e0245898b5bf.tar.bz2 portato-39af97830aacfc2eee1b51b45423e0245898b5bf.zip |
Some small changes for etcproposals 1.1
Diffstat (limited to '')
-rw-r--r-- | portato/plugins/etc_proposals.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/portato/plugins/etc_proposals.py b/portato/plugins/etc_proposals.py index 90f3f3f..cdf0a87 100644 --- a/portato/plugins/etc_proposals.py +++ b/portato/plugins/etc_proposals.py @@ -38,7 +38,7 @@ def etc_prop (*args, **kwargs): if l > 0: Popen("etc-proposals") else: - Popen(["etc-proposals", "--frontend gtk", "--fastexit"]) + Popen(["etc-proposals", "--frontend", "gtk", "--fastexit"]) def etc_prop_menu (*args, **kwargs): if not am_i_root(): @@ -47,4 +47,4 @@ def etc_prop_menu (*args, **kwargs): if float(__version__) < 1.1: Popen("etc-proposals") else: - Popen(["etc-proposals", "--frontend gtk"]) + Popen(["etc-proposals", "--frontend", "gtk"]) |