From 637e4babd076183adc02da3e4790c4e4b3cc124d Mon Sep 17 00:00:00 2001 From: Johannes Keyser Date: Sun, 8 Oct 2017 01:16:41 +0200 Subject: [PATCH] storage: Fix left over action script rename from disks. Signed-off-by: Johannes Keyser --- plinth/modules/storage/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plinth/modules/storage/__init__.py b/plinth/modules/storage/__init__.py index e14162fd4..f53f71d4f 100644 --- a/plinth/modules/storage/__init__.py +++ b/plinth/modules/storage/__init__.py @@ -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])