Wed, 17 Oct 2018 19:53:13 +0200
CreateDialogCodeDialog: third attempt on getting this working with projects using a virtual environment different from the one used to run eric.
# -*- coding: utf-8 -*- # Copyright (c) 2011 - 2018 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module to get sys.path of an external interpreter. """ from __future__ import print_function import sys import json if __name__ == "__main__": # print sys.path to stdout print(json.dumps(sys.path)) sys.exit(0) # # eflag: noqa = M701, M801