add documentation for tsstats.exceptions.*
This commit is contained in:
parent
f72521dc2c
commit
f7af9f9d39
|
@ -11,3 +11,6 @@ API
|
|||
|
||||
.. automethod:: tsstats.client.Clients.__init__
|
||||
.. automethod:: tsstats.client.Clients.__iter__
|
||||
|
||||
.. automodule:: tsstats.exceptions
|
||||
:members:
|
||||
|
|
|
@ -56,7 +56,7 @@ author = 'Thor77'
|
|||
# The short X.Y version.
|
||||
version = '0.5'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '0.5.3'
|
||||
release = '0.5.4'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
2
setup.py
2
setup.py
|
@ -2,7 +2,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name='tsstats',
|
||||
version='0.5.3',
|
||||
version='0.5.4',
|
||||
author='Thor77',
|
||||
author_email='thor77@thor77.org',
|
||||
description='A simple Teamspeak stats-generator',
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
class InvalidConfiguration(Exception):
|
||||
pass
|
||||
'''
|
||||
The configuration is invalid (either config-file or cli-args)
|
||||
'''
|
||||
|
||||
|
||||
class InvalidLog(Exception):
|
||||
'''
|
||||
Something impossible appeared at the logs,
|
||||
for example a disconnect before a connect
|
||||
'''
|
||||
pass
|
||||
|
|
Loading…
Reference in New Issue