diff options
author | Rod Smith <rod.smith@canonical.com> | 2020-06-18 12:53:33 -0400 |
---|---|---|
committer | Rod Smith <rod.smith@canonical.com> | 2020-06-18 12:53:33 -0400 |
commit | 3dc577e58324031db58a6226119bc556ac2b8e5d (patch) | |
tree | df07d433f47cea3a72bc3376dfc11b858ad31401 /bin | |
parent | 3f39467e039a092c627a3ac3d994395053767385 (diff) |
Fix broken fstrim_test module definition
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/fstrim_test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/fstrim_test b/bin/fstrim_test index c66d421..9455605 100755 --- a/bin/fstrim_test +++ b/bin/fstrim_test @@ -37,14 +37,14 @@ from subprocess import ( PIPE, Popen ) -import disk_support +import checkbox_support.disk_support def mount_filesystem(device): if "/dev" not in device and device != "": device = "/dev/" + device - test_disk = disk_support.Disk(device) + test_disk = checkbox_support.disk_support.Disk(device) mount_point = None if test_disk.mount_filesystem(False): mount_point = test_disk.get_mount_point() |