From a5e58ee352c2c0bd55800cace53d32401eadb7d3 Mon Sep 17 00:00:00 2001 From: Christophe Varoqui Date: Sun, 12 Aug 2018 16:18:39 +0200 Subject: [PATCH] Fix a qcall() call invalid argument in the jfs2 snap driver --- lib/snapJfs2AIX.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/snapJfs2AIX.py b/lib/snapJfs2AIX.py index 454c4d9e2d..711b46a951 100644 --- a/lib/snapJfs2AIX.py +++ b/lib/snapJfs2AIX.py @@ -8,7 +8,7 @@ class Snap(snap.Snap): def lv_exists(self, device): device = device.split("/")[-1] - ret = qcall(['lslv', device], cache=True) + ret = qcall(['lslv', device]) if ret == 0: return True return False