Fixed doc generation warning

The BaseStrategy interface was moved to another location but the
documentation wasn't updated accordingly, so here I updated this
import path.
As an extra, I also updated the description of the Solution which
also had an outdated import path.

Closes-Bug: #1522034
Change-Id: I8cd43e84db6945391db06ec6dfe82ce02eccc7f4
This commit is contained in:
Vincent Françoise 2015-12-02 16:55:08 +01:00
parent 8db19fea72
commit f555e66d75
2 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ Abstract Plugin Class
Here below is the abstract ``BaseStrategy`` class that every single strategy
should implement:
.. automodule:: watcher.decision_engine.api.strategy.strategy
.. automodule:: watcher.decision_engine.strategy.base
:noindex:
.. autoclass:: BaseStrategy

View File

@ -47,7 +47,7 @@ class BaseStrategy(object):
:param model: The name of the strategy to execute (loaded dynamically)
:type model: str
:return: A computed solution (via a placement algorithm)
:rtype: :class:`watcher.decision_engine.api.strategy.solution.Solution`
:rtype: :class:`watcher.decision_engine.solution.base.Solution`
"""
@property