diff options
Diffstat (limited to '')
-rw-r--r-- | portato/plugins/etc_proposals.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/portato/plugins/etc_proposals.py b/portato/plugins/etc_proposals.py index 81370e0..f094599 100644 --- a/portato/plugins/etc_proposals.py +++ b/portato/plugins/etc_proposals.py @@ -13,6 +13,7 @@ from portato.helper import * from portato.backend import system +import os from subprocess import Popen from gettext import lgettext as _ from etcproposals.etcproposals_lib import EtcProposals, __version__ @@ -64,7 +65,7 @@ def etc_prop (*args, **kwargs): error(_("Cannot start etc-proposals. No graphical frontend installed!")) def etc_prop_menu (*args, **kwargs): - if am_i_root(): + if os.getuid() == 0: if float(__version__) < 1.1: Popen(PROG) else: |