summaryrefslogtreecommitdiff
path: root/heat_cfntools/cfntools
diff options
context:
space:
mode:
authorSteve Baker <sbaker@redhat.com>2013-08-07 13:27:45 +1200
committerSteve Baker <sbaker@redhat.com>2013-08-07 13:29:13 +1200
commit28e9aac8d97df945bc7fcfed1f70e3a35d47498d (patch)
tree1c9185c992eb8e18002d29c754d21f69b18f0f52 /heat_cfntools/cfntools
parentcfa33e160bb8da389940b4239ac13cb81d5b8cdf (diff)
downloadheat-cfntools-28e9aac8d97df945bc7fcfed1f70e3a35d47498d.tar.gz
Use python 3 style print functions
Required to pass pep8 H233. Change-Id: I136dd2aa9fa567208a2fe1660b7a9085fde2927e
Diffstat (limited to 'heat_cfntools/cfntools')
-rw-r--r--heat_cfntools/cfntools/cfn_helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/heat_cfntools/cfntools/cfn_helper.py b/heat_cfntools/cfntools/cfn_helper.py
index 54f3f87..6f4b2c7 100644
--- a/heat_cfntools/cfntools/cfn_helper.py
+++ b/heat_cfntools/cfntools/cfn_helper.py
@@ -1181,7 +1181,7 @@ class Metadata(object):
def display(self):
if self._metadata is not None:
- print str(self)
+ print(str(self))
return
def _is_valid_metadata(self):