Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 322067
Collapse All | Expand All

(-)hplip-3.10.5-old/installer/core_install.py (-1 / +5 lines)
Lines 1990-1996 Link Here
1990
        if mode == GUI_MODE:
1990
        if mode == GUI_MODE:
1991
            return os.system("sh %s --nox11 -- -u" % plugin_file) == 0
1991
            return os.system("sh %s --nox11 -- -u" % plugin_file) == 0
1992
        else:
1992
        else:
1993
            return os.system("sh %s --nox11 -- -i" % plugin_file) == 0
1993
            if os.system("sh %s --nox11 -- -i" % plugin_file) == 0:
1994
                return True
1995
            else:
1996
                log.error("Python gobject/dbus may be not installed")
1997
                return False
1994
1998
1995
1999
1996
    def delete_plugin(self):
2000
    def delete_plugin(self):

Return to bug 322067