Skip to content

Commit 2aa5903

Browse files
committed
Merge branch 'main' into fakeudev
2 parents 406b04e + 42f0bd6 commit 2aa5903

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "ugrd"
7-
version = "1.19.1"
7+
version = "1.19.2"
88
authors = [
99
{ name="Desultory", email="[email protected]" },
1010
]
@@ -18,7 +18,7 @@ classifiers = [
1818
]
1919

2020
dependencies = [
21-
"zenlib >= 2.2.2",
21+
"zenlib >= 2.2.3",
2222
"pycpio >= 1.3.2"
2323
]
2424

src/ugrd/fs/btrfs.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.8.1'
1+
__version__ = '1.8.2'
22
__author__ = 'desultory'
33

44

@@ -43,7 +43,7 @@ def _validate_root_subvol(self) -> None:
4343

4444
def _process_root_subvol(self, root_subvol: str) -> None:
4545
""" processes the root subvolume. """
46-
self.update({'root_subvol': root_subvol})
46+
self.data['root_subvol'] = root_subvol
4747
self.logger.debug("Set root_subvol to: %s", root_subvol)
4848

4949

@@ -53,7 +53,7 @@ def _process_subvol_selector(self, subvol_selector: bool) -> None:
5353
Adds the _base_mount_path to paths if enabled.
5454
"""
5555
if subvol_selector:
56-
self.update({'subvol_selector': subvol_selector})
56+
self.data['subvol_selector'] = subvol_selector
5757
self.logger.debug("Set subvol_selector to: %s", subvol_selector)
5858
self['paths'] = self['_base_mount_path']
5959

0 commit comments

Comments
 (0)