Compare commits
2 Commits
40da1972af
...
b25ab1a4c6
| Author | SHA1 | Date | |
|---|---|---|---|
| b25ab1a4c6 | |||
| 243555c0c9 |
@ -1,3 +1,12 @@
|
||||
import sys
|
||||
import os
|
||||
|
||||
# Add the 'lib' directory to the Python path BEFORE any other imports
|
||||
# This ensures bundled libraries are used
|
||||
lib_path = os.path.join(os.path.dirname(__file__), 'lib')
|
||||
if lib_path not in sys.path:
|
||||
sys.path.insert(0, lib_path)
|
||||
|
||||
""" Notice how this file is completely independent of sublime text
|
||||
|
||||
I think it should be kept this way, just because it gives a bit more organisation,
|
||||
|
||||
Reference in New Issue
Block a user