diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-04-23 10:18:53 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-07-29 15:07:22 +0200 |
commit | e20cda122b87cc4ad62eaccd412d918aa38768cb (patch) | |
tree | 38d9affaf6fb3f0b7d269868ef47e6d9aebf6541 /src/live | |
parent | 2c10b4c92afc80441493ad9b239952b43d2b761e (diff) |
utils: rename ogExtendFs to extend_filesystem
Use a more consistent name format for the ogExtendFs function.
Diffstat (limited to 'src/live')
-rw-r--r-- | src/live/ogOperations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live/ogOperations.py b/src/live/ogOperations.py index 15e563f..7958e9e 100644 --- a/src/live/ogOperations.py +++ b/src/live/ogOperations.py @@ -572,7 +572,7 @@ class OgLiveOperations: logging.info(f'partclone process exited with code {p1.returncode}') logging.info(f'lzop process exited with code {p2.returncode}') - ogExtendFs(disk, partition) + extend_filesystem(disk, partition) if os.access(f'{image_path}', os.R_OK) == False: raise OgError(f'Cannot access partclone image file {image_path}') |