Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions xbstrap/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1742,9 +1742,12 @@ def stability_level(self):

@property
def is_implicit(self):
if "implict_package" not in self._this_yml:
return False
return self._this_yml["implict_package"]
if "implicit_package" in self._this_yml:
return self._this_yml["implicit_package"]
# Compatibility for legacy misspelling.
if "implict_package" in self._this_yml:
Comment thread
marv7000 marked this conversation as resolved.
return self._this_yml["implict_package"]
return False

@property
def architecture(self):
Expand Down
2 changes: 1 addition & 1 deletion xbstrap/schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ properties:
'stability_level':
type: string
enum: ['stable', 'unstable', 'broken']
'implict_package':
'implicit_package':
type: boolean
'source': { $ref: '#/definitions/nested_source' }
'from_source':
Expand Down
Loading