summaryrefslogtreecommitdiff
path: root/tools/custom_guidelines.py
diff options
context:
space:
mode:
authorPeter Razumovsky <prazumovsky@mirantis.com>2016-02-18 15:33:45 +0300
committerPeter Razumovsky <prazumovsky@mirantis.com>2016-02-26 15:47:46 +0300
commite4dc942ce1a8c79b450345c7afae326c80d8a5d6 (patch)
treeef3ac2794bccf679c35ee4d43efaac757fb21bca /tools/custom_guidelines.py
parent2da713fa913c912766a467a55d25e315d570d239 (diff)
downloadheat-e4dc942ce1a8c79b450345c7afae326c80d8a5d6.tar.gz
Fix resources descriptions for custom guidelines
There're several errors, raised by custom guidelines check, need to fix it for successful pep8 running. implements bp custom-guidelines Change-Id: Ibef41cad9b20715a740cedac7b98e9647bd3d6b7
Diffstat (limited to 'tools/custom_guidelines.py')
-rw-r--r--tools/custom_guidelines.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/custom_guidelines.py b/tools/custom_guidelines.py
index 21dd50bbc..a2db0c3d6 100644
--- a/tools/custom_guidelines.py
+++ b/tools/custom_guidelines.py
@@ -53,7 +53,7 @@ class HeatCustomGuidelines(object):
def check_resource_descriptions(self):
for cls in self.resources_classes:
# check resource's description
- #self._check_resource_description(cls)
+ self._check_resource_description(cls)
# check properties' descriptions
self._check_resource_schemas(cls, cls.properties_schema,
'property')