Skip to content

Commit 60bbb73

Browse files
Make shared func for parsing config bools #3
1 parent 5e15ae7 commit 60bbb73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mongodb_consistent_backup/Common/Config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ def parse_config_bool(item):
1515
elif isinstance(item, str):
1616
if item.rstrip().lower() is "true":
1717
return True
18+
return False
1819
except:
1920
return False
20-
return False
2121

2222

2323
class PrintVersions(Action):

0 commit comments

Comments
 (0)