Skip to content
Merged
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
2 changes: 1 addition & 1 deletion python/qemu/ot/otp/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def get_scrambling_key(self, name: str) -> str:
except KeyError as exc:
raise ValueError('No scrambling key constants found') from exc
if len(key_values) <= idx:
raise ValueError(f'No such key {name} in the key array') from exc
raise ValueError(f'No such key {name} in the key array')
return key_values[idx]

def get_partition_inv_defaults(self, partition: int) -> Optional[str]:
Expand Down
Loading