Skip to content

Commit

Permalink
Fix path issue discovered with Akamai CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
bitonio committed Dec 5, 2022
1 parent 552281a commit 3a19f45
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bin/akamai-mfa
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@

import sys
import os
sys.path.append(os.path.abspath('../src'))
sys.path.append(os.path.abspath(
os.path.join(os.path.dirname(__file__), '../src')
))

import amfa.main # noqa: E402

Expand Down

0 comments on commit 3a19f45

Please sign in to comment.