Skip to content

Commit

Permalink
Merge pull request #5 from akamai/EME-608
Browse files Browse the repository at this point in the history
Fix path issue discovered with Akamai CLI
  • Loading branch information
bitonio authored Dec 5, 2022
2 parents cdb3d0f + 3a19f45 commit 6702419
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 6702419

Please sign in to comment.