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:
parent
4e08bbc1d5
commit
831abc3fde
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user