Fix system slvs module search

This commit is contained in:
Zheng, Lei 2019-05-25 13:29:25 +08:00
parent 32c602dc94
commit 43dd351c83

View File

@ -3,6 +3,9 @@ from .system import System, SystemBase, SystemExtension
from .utils import syslogger as logger, objName
import platform, sys
try:
import slvs
except ImportError:
try:
from py_slvs import slvs
except ImportError: