Fixed issue when passwords contain a percent symbol.
This commit is contained in:
parent
854eac8c49
commit
8cd9c56766
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ driver = webdriver.Firefox(executable_path=ff_exec_path, options=options)
|
||||||
|
|
||||||
def getcreds():
|
def getcreds():
|
||||||
print("Reading configuration.")
|
print("Reading configuration.")
|
||||||
configuration = configparser.ConfigParser()
|
configuration = configparser.ConfigParser(interpolation=None)
|
||||||
configuration.read('sgspider.ini')
|
configuration.read('sgspider.ini')
|
||||||
print("Finished reading configuration.")
|
print("Finished reading configuration.")
|
||||||
return configuration
|
return configuration
|
||||||
|
|
Loading…
Add table
Reference in a new issue