diff options
Diffstat (limited to 'pygerrit')
| -rw-r--r-- | pygerrit/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pygerrit/models.py b/pygerrit/models.py index 813b53f..f0d4d7f 100644 --- a/pygerrit/models.py +++ b/pygerrit/models.py @@ -31,6 +31,7 @@ class Change(object): def __init__(self, json_data): self.project = from_json(json_data, "project") self.branch = from_json(json_data, "branch") + self.topic = from_json(json_data, "topic") self.change_id = from_json(json_data, "id") self.number = from_json(json_data, "number") self.subject = from_json(json_data, "subject") |
