We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e40d995 commit 67ea2f1Copy full SHA for 67ea2f1
1 file changed
auth.py
@@ -171,6 +171,9 @@ def islogin():
171
172
173
def read_account_from_config_file(config_file="config.ini"):
174
+ # NOTE: The ConfigParser module has been renamed to configparser in Python 3.
175
+ # The 2to3 tool will automatically adapt imports when converting your sources to Python 3.
176
+ # https://docs.python.org/2/library/configparser.html
177
from ConfigParser import ConfigParser
178
cf = ConfigParser()
179
if os.path.exists(config_file) and os.path.isfile(config_file):
0 commit comments