Fix not calling str() on value before adding to config in __main__.cli

* bump version to 0.10.4
This commit is contained in:
Thor77 2016-08-08 22:25:57 +02:00
parent 5ff08e0163
commit a475caa7c7
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name='tsstats',
version='0.10.3',
version='0.10.4',
author='Thor77',
author_email='thor77@thor77.org',
description='A simple Teamspeak stats-generator',

View File

@ -48,7 +48,7 @@ def cli():
else:
configuration = config.load()
for option, value in vars(options).items():
configuration.set('General', option, value)
configuration.set('General', option, str(value))
main(configuration)