diff --git a/docs/source/conf.py b/docs/source/conf.py index 888ab03..2339e4f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -56,7 +56,7 @@ author = 'Thor77' # The short X.Y version. version = '0.6' # The full version, including alpha/beta/rc tags. -release = '0.6.4' +release = '0.6.5' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index ea11b67..e94ced2 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='tsstats', - version='0.6.4', + version='0.6.5', author='Thor77', author_email='thor77@thor77.org', description='A simple Teamspeak stats-generator', diff --git a/tsstats/client.py b/tsstats/client.py index 600311c..bdccbb4 100644 --- a/tsstats/client.py +++ b/tsstats/client.py @@ -16,7 +16,7 @@ class Clients(MutableMapping): ''' Initialize a new Client-collection - :param ident_map: Identity-map (see :ref:`IdentMap`) + :param ident_map: Identity-map (see :doc:`identmap`) :type ident_map: dict ''' self.ident_map = ident_map or {} diff --git a/tsstats/log.py b/tsstats/log.py index 533108e..d96cf6b 100644 --- a/tsstats/log.py +++ b/tsstats/log.py @@ -26,7 +26,7 @@ def parse_logs(log_glob, ident_map=None): parse logs specified by globbing pattern `log_glob` :param log_glob: path to log-files (supports globbing) - :param ident_map: :ref:`IdentMap` + :param ident_map: :doc:`identmap` :type log_glob: str :type ident_map: dict @@ -45,7 +45,7 @@ def parse_log(log_path, ident_map=None, clients=None): parse log-file at `log_path` :param log_path: path to log-file - :param ident_map: :ref:`IdentMap` + :param ident_map: :doc:`identmap` :param clients: clients-object to add parsing-results to :type log_path: str