Skip to content
Snippets Groups Projects
Commit d63f3ee2 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

Merge branch 'master' into develop

parents 8d420366 3e0ee961
No related branches found
No related tags found
No related merge requests found
...@@ -60,7 +60,7 @@ author = u'Piotr Maślanka' ...@@ -60,7 +60,7 @@ author = u'Piotr Maślanka'
# #
# The short X.Y version. # The short X.Y version.
from satella import __version__ from satella import __version__
version = __version__.split('.', 2)[:2].join('.') version = '.'.join(__version__.split('.', 2)[:2])
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = __version__ release = __version__
......
...@@ -2,7 +2,7 @@ Welcome to satella's documentation! ...@@ -2,7 +2,7 @@ Welcome to satella's documentation!
=================================== ===================================
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
:caption: Contents: :caption: Contents:
coding/monitor coding/monitor
......
...@@ -9,4 +9,4 @@ that does not have to correspond to particular modules or classes. It can be in ...@@ -9,4 +9,4 @@ that does not have to correspond to particular modules or classes. It can be in
By default, it runs in _runtime_ mode. This means that statistics are collected only from metrics of this By default, it runs in _runtime_ mode. This means that statistics are collected only from metrics of this
instrument that are set to at least RUNTIME. If a user wants to dig deeper, it can switch the instrument to instrument that are set to at least RUNTIME. If a user wants to dig deeper, it can switch the instrument to
DEBUG, which will cause more data to be registered. DEBUG, which will cause more data to be registered.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment