From cc154c2bf27e945afda5105261b3b6df29b2d468 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Thu, 16 Jul 2009 12:27:53 +0200 Subject: [PATCH] prevent traceback when kwalletcli is not available. see #5153 --- src/common/kwalletbinding.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/common/kwalletbinding.py b/src/common/kwalletbinding.py index a2562352c..0de030bd8 100644 --- a/src/common/kwalletbinding.py +++ b/src/common/kwalletbinding.py @@ -26,7 +26,10 @@ import subprocess def kwallet_available(): """Return True if kwalletcli can be run, False otherwise.""" - p = subprocess.Popen(["kwalletcli", "-qV"]) + try: + p = subprocess.Popen(["kwalletcli", "-qV"]) + except Exception: + return False p.communicate() if p.returncode == 0: return True