fix(error with repository): removed a field that is not being used
this causes an exception when getting releases Issue: https://coreosdev.atlassian.net/browse/QUAY-753 - [ ] It works! - [ ] Comments provide sufficient explanations for the next contributor - [ ] Tests cover changes and corner cases - [ ] Follows Quay syntax patterns and format
This commit is contained in:
parent
c271b1f386
commit
11b1dca994
2 changed files with 2 additions and 3 deletions
|
@ -131,11 +131,10 @@ class Channel(namedtuple('Channel', ['name', 'linked_tag_name', 'linked_tag_life
|
|||
|
||||
|
||||
class Release(
|
||||
namedtuple('Channel', ['name', 'released', 'lifetime_start', 'releases_channels_map'])):
|
||||
namedtuple('Channel', ['name', 'lifetime_start', 'releases_channels_map'])):
|
||||
"""
|
||||
Repository a single quay repository
|
||||
:type name: string
|
||||
:type released: string
|
||||
:type last_modified: string
|
||||
:type releases_channels_map: {string -> string}
|
||||
"""
|
||||
|
|
Reference in a new issue