summaryrefslogtreecommitdiffstats
path: root/nova/db/sqlalchemy/models.py
diff options
context:
space:
mode:
authorDirk Mueller <dirk@dmllr.de>2013-06-08 13:18:51 +0200
committerDirk Mueller <dirk@dmllr.de>2013-06-12 22:07:23 +0200
commit1bf87dda57b076e042301eeafa966283265d08cf (patch)
tree103b0d02f296210ca95f1ed117347ab5d2c948b2 /nova/db/sqlalchemy/models.py
parent957bd5c780c83243c750c22925e8f61f683f2b03 (diff)
downloadnova-1bf87dda57b076e042301eeafa966283265d08cf.tar.gz
nova-1bf87dda57b076e042301eeafa966283265d08cf.tar.xz
nova-1bf87dda57b076e042301eeafa966283265d08cf.zip
Fix and enable H403 tests
Multi-line doc-strings should end on a new, separate line. Change-Id: I4cf0cfe92b634ef77971863a4df41ef43531bc20
Diffstat (limited to 'nova/db/sqlalchemy/models.py')
-rw-r--r--nova/db/sqlalchemy/models.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/db/sqlalchemy/models.py b/nova/db/sqlalchemy/models.py
index 99a68d2cf..815041638 100644
--- a/nova/db/sqlalchemy/models.py
+++ b/nova/db/sqlalchemy/models.py
@@ -104,7 +104,8 @@ class ComputeNode(BASE, NovaBase):
class ComputeNodeStat(BASE, NovaBase):
"""Stats related to the current workload of a compute host that are
- intended to aid in making scheduler decisions."""
+ intended to aid in making scheduler decisions.
+ """
__tablename__ = 'compute_node_stats'
__table_args__ = (
Index('ix_compute_node_stats_compute_node_id', 'compute_node_id'),