Skip to content

Commit

Permalink
Fix a qcall() call invalid argument in the jfs2 snap driver
Browse files Browse the repository at this point in the history
  • Loading branch information
cvaroqui committed Aug 12, 2018
1 parent 8d606c6 commit a5e58ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/snapJfs2AIX.py
Expand Up @@ -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
Expand Down

0 comments on commit a5e58ee

Please sign in to comment.