Skip to content

Commit 65981d7

Browse files
committed
fix merge_mounts check, bump zenlib dep version
Signed-off-by: Zen <[email protected]>
1 parent 8e788b5 commit 65981d7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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 = "0.19.0"
7+
version = "0.19.1"
88
authors = [
99
{ name="Desultory", email="[email protected]" },
1010
]
@@ -18,7 +18,7 @@ classifiers = [
1818
]
1919

2020
dependencies = [
21-
"zenlib >= 1.3.0",
21+
"zenlib >= 1.3.1",
2222
"pycpio >= 0.7.0"
2323
]
2424

src/ugrd/fs/mounts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__ = 'desultory'
2-
__version__ = '2.0.0'
2+
__version__ = '2.0.1'
33

44
from pathlib import Path
55

@@ -9,7 +9,7 @@
99
SOURCE_TYPES = ['uuid', 'partuuid', 'label']
1010

1111

12-
@check_dict('mounts', value_arg=1, return_arg=2)
12+
@check_dict('mounts', value_arg=1, return_arg=2, contains=True)
1313
def _merge_mounts(self, mount_name: str, mount_config) -> None:
1414
""" Returns merges mount config with the existing mount. """
1515
self.logger.info("Updating mount: %s" % mount_name)

0 commit comments

Comments
 (0)