Skip to content

Commit 0b83e9a

Browse files
committed
Fixing import of parent classes file
1 parent bd93a0b commit 0b83e9a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

installer/version_parser.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,13 @@
2626
"""
2727

2828
import os
29+
import sys
2930
import json
3031
import datetime
31-
from classes import info
32+
33+
PATH = os.path.dirname(os.path.dirname(os.path.realpath(__file__))) # Primary openshot folder
34+
sys.path.append(os.path.join(PATH, 'src', 'classes'))
35+
import info
3236

3337

3438
def parse_version_info(version_path):

0 commit comments

Comments
 (0)