Skip to content

Commit

Permalink
Fixed filepath bug for relative log/venv locations
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Campbell committed Sep 17, 2020
1 parent 8b11829 commit 9b5ff3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/venv-manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
################################################################################

# Set virtual environment path
WEBQUEUE2_DIR = Path(__file__).parent.parent
WEBQUEUE2_DIR = Path(os.path.abspath(__file__)).parent.parent
API_DIR = Path(WEBQUEUE2_DIR, "api")
VENV_NAME = "venv"
VENV_DIR = Path(API_DIR, VENV_NAME)
Expand Down

0 comments on commit 9b5ff3a

Please sign in to comment.