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/utils | |
parent | 2c10b4c92afc80441493ad9b239952b43d2b761e (diff) |
utils: rename ogExtendFs to extend_filesystem
Use a more consistent name format for the ogExtendFs function.
Diffstat (limited to 'src/utils')
-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 8f45ad5..3de8ee2 100644 --- a/src/utils/fs.py +++ b/src/utils/fs.py @@ -117,7 +117,7 @@ def ogReduceFs(disk, part): return ret -def ogExtendFs(disk, part): +def extend_filesystem(disk, part): """ Grow filesystem of a partition. Supports ext4 and ntfs partitions. Unsupported filesystem or invalid paths don't raise an exception, |