Give more priority to local module instead of installed.
So when we run a modified local copy the changes are used.
This commit is contained in:
parent
97b6cedf06
commit
23dee459f4
|
|
@ -13,7 +13,7 @@ import sys
|
|||
import os
|
||||
|
||||
here = os.path.abspath(os.path.dirname(__file__))
|
||||
sys.path.append(os.path.dirname(here))
|
||||
sys.path.insert(0, os.path.dirname(here))
|
||||
|
||||
from kiplot.__main__ import main
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue