ensure the review id is always a string when building url

Change-Id: If759d20d0681f5f6abf7521da2a1e33b52adecb6
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2019-01-07 18:02:21 -05:00
parent 4e08bbc1d5
commit 831abc3fde
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ class Review:
@property
def url(self):
return GERRIT_API_URL + self._id + '/'
return GERRIT_API_URL + str(self._id) + '/'
@property
def created(self):