Skip to content

Commit

Permalink
Small typo fix in relative path
Browse files Browse the repository at this point in the history
  • Loading branch information
zacdezgeo committed Jul 31, 2024
1 parent e4093ba commit f8461f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion space2stats_api/app/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
env_file_name = 'local_db.env'

if os.path.basename(current_directory) == "space2stats_api":
env_path = os.path.join(current_directory, env_file_name)
env_path = os.path.join(current_directory, '..', env_file_name)
else:
env_path = os.path.join(current_directory, env_file_name)

Expand Down

0 comments on commit f8461f5

Please sign in to comment.