diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-07-15 09:43:07 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-07-15 09:50:38 +0200 |
commit | 8ac8dc306e5711832d2ffaa6a783ac12e04e57a6 (patch) | |
tree | 123eb5ab6eef1b7b031437e5c79b514a5a8b78e1 | |
parent | 8453a8d9caafbd7a484fd990af5f89c83da7991f (diff) |
utils: missing f-string with filesystem resize errorv1.3.2-13
... failed to resize {partdev} with ext4
-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 |