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:
Salvador E. Tropea 2020-03-13 10:55:49 -03:00
parent 97b6cedf06
commit 23dee459f4
1 changed files with 1 additions and 1 deletions

View File

@ -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