boto / boto

For the latest version of boto, see https://github.com/boto/boto3 -- Python interface to Amazon Web Services

Home Page:http://docs.pythonboto.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

should this use getbool rather than get?

mbmasuda opened this issue · comments

boto/boto/auth.py

Line 1062 in 8fac187

if boto.config.get('s3', 'use-sigv4', False):

I am wondering if this line should be changed to use getbool() rather than get(). It seems even if "use-sigv4" is set to "false", it tries to use SigV4 because "false" is a non-empty string and thus truthy.