~ubuntu-branches/ubuntu/trusty/heat/trusty-updates

« back to all changes in this revision

Viewing changes to heat/engine/api.py

  • Committer: Package Import Robot
  • Author(s): Corey Bryant
  • Date: 2015-03-30 09:01:26 UTC
  • mfrom: (26.1.5 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20150330090126-y8c9leuw037vmtrn
Tags: 2014.1.4-0ubuntu2
d/control: Set minimum python-six dependency to 1.5.2 (LP: #1403114).

Show diffs side-by-side

added added

removed removed

Lines of Context:
274
274
        api.PARAM_LABEL: param.label()
275
275
    }
276
276
 
277
 
    if param.has_default():
278
 
        res[api.PARAM_DEFAULT] = param.default()
 
277
    if param.has_value():
 
278
        res[api.PARAM_DEFAULT] = param.value()
279
279
 
280
280
    constraint_description = []
281
281