Skip to content

Commit

Permalink
fixed path resolving
Browse files Browse the repository at this point in the history
  • Loading branch information
initstring committed Sep 27, 2019
1 parent b3959d2 commit 439a2d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloud_enum.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def parse_arguments():
parser = argparse.ArgumentParser(description=desc)

# Grab the current dir of the script, for setting some defaults below
script_path = os.path.dirname(__file__)
script_path = os.path.split(os.path.abspath(sys.argv[0]))[0]

kw_group = parser.add_mutually_exclusive_group(required=True)

Expand Down

0 comments on commit 439a2d5

Please sign in to comment.