Skip to content

Commit 84717f8

Browse files
amarshallccordoba12
authored andcommitted
Fix undefined method (#614)
1 parent e261b2c commit 84717f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyls/config/source.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def _get_opt(config, key, option, opt_type):
5252
continue
5353

5454
if opt_type == bool:
55-
return config.getbool(key, opt_key)
55+
return config.getboolean(key, opt_key)
5656

5757
if opt_type == int:
5858
return config.getint(key, opt_key)

0 commit comments

Comments
 (0)