mirror of
https://github.com/Thor77/TeamspeakStats.git
synced 2025-04-03 20:24:33 -04:00
use py2-style ConfigParser-set and section_add in tests
This commit is contained in:
parent
6e7922492a
commit
6889946ab6
1 changed files with 3 additions and 1 deletions
|
@ -16,7 +16,9 @@ configpath = abspath('tsstats/tests/res/test.cfg')
|
|||
|
||||
def create_config(values, key='General'):
|
||||
config = ConfigParser()
|
||||
config[key] = values
|
||||
config.add_section('General')
|
||||
for option, value in values.items():
|
||||
config.set('General', option, value)
|
||||
with open(configpath, 'w') as configfile:
|
||||
config.write(configfile)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue