Skip to content

Commit 73312f5

Browse files
committed
Fixed wrong object call.
1 parent 9663a0c commit 73312f5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

omnipkg/core.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4332,9 +4332,10 @@ def _synchronize_knowledge_base_with_reality(self, verbose: bool = False) -> Lis
43324332
# If a rebuild was just run, the KB is perfectly in sync.
43334333
# We can return early to avoid redundant work.
43344334
safe_print(" ✅ First-use KB build complete. Synchronization is guaranteed.")
4335-
return self._discover_distributions(None, verbose=False)
4335+
gatherer = omnipkgMetadataGatherer(config=self.config, env_id=self.env_id, omnipkg_instance=self)
4336+
return gatherer._discover_distributions(None, verbose=False)
43364337
# --- END OF "FIRST USE" LOGIC ---
4337-
4338+
43384339
self._clean_corrupted_installs()
43394340
if self._check_and_run_pending_rebuild():
43404341
pass

0 commit comments

Comments
 (0)