Merge pull request #359 from PR0M3TH3AN/codex/fix-error-when-listing-archived-entries

Fix archived listing error
This commit is contained in:
thePR0M3TH3AN
2025-07-07 14:16:06 -04:00
committed by GitHub

View File

@@ -728,7 +728,8 @@ class EntryManager:
print(colored(f" Label: {entry.get('label', '')}", "cyan")) print(colored(f" Label: {entry.get('label', '')}", "cyan"))
print( print(
colored( colored(
f" Derivation Index: {entry.get('index', index)}", "cyan" f" Derivation Index: {entry.get('index', idx)}",
"cyan",
) )
) )
print("-" * 40) print("-" * 40)