Closed RMHogervorst closed 4 years ago
The configparser does interpolation of values automatically and it messes up the process when you have special characters.
A solution is to initialize the class with interpolation set to none, example whagodri.py line 55
def getConfigs(): global gmail, passw, celnumbr config = ConfigParser(interpolation=None)
Thanks for the advice, I'll change it. Fix v1.21
The configparser does interpolation of values automatically and it messes up the process when you have special characters.
A solution is to initialize the class with interpolation set to none, example whagodri.py line 55