1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Try to fix issue#100.

site module is not present.
This commit is contained in:
Shlomi Fish 2019-02-16 21:58:24 +02:00
parent cebd349e28
commit 8a93f4ba13

View file

@ -23,7 +23,13 @@
# imports
import os
try:
import site
except Exception:
class Dummy:
def __init__(self):
self.PREFIXES = []
site = Dummy()
import sys
# PySol imports