Skip to content

Commit

Permalink
barbican: fix internal cmd import (#5)
Browse files Browse the repository at this point in the history
This has to be renamed and i miss this one.
  • Loading branch information
fvalette-ledger authored Sep 18, 2024
2 parents 99171c6 + b058d6d commit 1dc05dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/outpost/barbican/barbican.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ def run_internal_command(cmd: str, argv: T.List[str]) -> None:
"""
import importlib

module = importlib.import_module("barbican._internals." + cmd)
module = importlib.import_module("outpost.barbican._internals." + cmd)
module.run(argv)


Expand Down

0 comments on commit 1dc05dc

Please sign in to comment.