microsoft / knack

Knack - A Python command line interface framework
https://pypi.python.org/pypi/knack
MIT License
348 stars 95 forks source link

rollback get_config_parser for backward compatibility #205

Closed arrownj closed 4 years ago

arrownj commented 4 years ago

In previous PR, get_config_parser was removed because package six was removed and we can use configparser.ConfigParser directly. All previous get_config_parser in azure-cli are updated. However there is some extension which is not owned by CLI team (such as azure-devops) still use this function.

For compatibility concern, it's better to keep this simple function.