Github user ran-z commented on a diff in the pull request:

    https://github.com/apache/incubator-ariatosca/pull/107#discussion_r115726284
  
    --- Diff: aria/cli/table.py ---
    @@ -85,7 +85,7 @@ def get_values_per_column(column, row_data):
     
                 return val
             else:
    -            return defaults[column]
    +            return defaults.get(column) if defaults is not None else None
    --- End diff --
    
    should instead have a `defaults = defaults or {}` before calling the nested 
method


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to