Skip to content

Commit

Permalink
TVB-3086 Sometimes CURRENT_DIR remains wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
liadomide committed Aug 4, 2023
1 parent fad9d25 commit ec2c481
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tvb_library/tvb/basic/config/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def __init__(self, manager):
self.ENCRYPT_STORAGE = manager.get_attribute(stored.KEY_ENCRYPT_STORAGE, False, eval)
self.DECRYPT_PATH = manager.get_attribute(stored.KEY_DECRYPT_PATH)

self.CURRENT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
self.CURRENT_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))

try:
import tvb.interfaces
Expand Down

0 comments on commit ec2c481

Please sign in to comment.