commit e081f53728c208a2537a1fe96cdfb18b570614bc parent 0703677ef8750f39eb8007de9f7031ebec11ee14 Author: Jan Pobříslo <ccx@te2000.cz> Date: Thu, 22 Feb 2024 08:17:59 +0100 Allow NULL fstype Diffstat:
M | userns_sandbox.py | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/userns_sandbox.py b/userns_sandbox.py @@ -126,7 +126,7 @@ def mount( _mount( c_path(source), c_path(target), - fstype.encode(), + fstype.encode() if fstype is not None else fstype, int(flags), data.encode() if data is not None else data, )