mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
7 lines
142 B
Python
7 lines
142 B
Python
|
import sys
|
||
|
import os
|
||
|
|
||
|
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
|
||
|
|
||
|
sys.path.insert(0, os.path.join(THIS_DIR, "third_party", "six"))
|