Skip to content

Commit 35bf9c3

Browse files
committed
Fix bug in storage/__init__.py dropping "False" config values
1 parent befbb9b commit 35bf9c3

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

qubes/storage/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1115,6 +1115,8 @@ def _sanitize_config(config):
11151115
if isinstance(value, bool):
11161116
if value:
11171117
result[key] = "True"
1118+
else:
1119+
result[key] = "False"
11181120
else:
11191121
result[key] = str(value)
11201122
return result

0 commit comments

Comments
 (0)