rclconfig.py: ensure importing conftree works whether we are inside the recoll package or not

This commit is contained in:
Jean-Francois Dockes 2019-03-23 15:55:01 +01:00
parent 56d3631245
commit aa04bff86f

View File

@ -8,7 +8,10 @@ import sys
import base64
import platform
import conftree
try:
from . import conftree
except:
import conftree
class RclDynConf:
def __init__(self, fname):