diff options
Diffstat (limited to 'src/utils/fs.py')
-rw-r--r-- | src/utils/fs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/fs.py b/src/utils/fs.py index 766c09b..fc326ab 100644 --- a/src/utils/fs.py +++ b/src/utils/fs.py @@ -243,7 +243,7 @@ def _reduce_resize2fs(partdev): with open('/tmp/command.log', 'ab', 0) as logfile: proc = subprocess.run(cmd, stdout=logfile, stderr=STDOUT) if proc.returncode != 0: - logging.error('failed to resize {partdev} with ext4') + logging.error(f'Failed to resize ext4 filesystem in {partdev}') return -1 return 0 |