Skip to content

Commit 731d993

Browse files
committed
Merge pull request #13 from awslabs/develop
Fixing update version check
2 parents f994087 + 27be466 commit 731d993

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/cfncluster/cfnconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def __init__(self, args):
6161

6262
# Check if package updates should be checked
6363
try:
64-
self.__update_check = __config.get('global', 'update_check')
64+
self.__update_check = __config.getboolean('global', 'update_check')
6565
except ConfigParser.NoOptionError:
6666
self.__update_check = True
6767

0 commit comments

Comments
 (0)