storage: Fix left over action script rename from disks.

Signed-off-by: Johannes Keyser <johanneskeyser@posteo.de>
This commit is contained in:
Johannes Keyser 2017-10-08 01:16:41 +02:00
parent dc1c0aa09d
commit 637e4babd0
No known key found for this signature in database
GPG Key ID: D1431C2C533CF0D0

View File

@ -120,7 +120,7 @@ def is_expandable(device):
try:
output = actions.superuser_run(
'disks', ['is-partition-expandable', device])
'storage', ['is-partition-expandable', device])
except actions.ActionError:
return False
@ -129,4 +129,4 @@ def is_expandable(device):
def expand_partition(device):
"""Expand a partition."""
actions.superuser_run('disks', ['expand-partition', device])
actions.superuser_run('storage', ['expand-partition', device])