We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d15a681 commit 97e919cCopy full SHA for 97e919c
1 file changed
lib/python/common/iniinfo.py
@@ -33,8 +33,7 @@ def __init__(self, ini=None):
33
# Are we using RIP or installed version?
34
self.RIP_FLAG = bool(os.environ.get('LINUXCNC_RIP_FLAG', False))
35
36
- base = self.get_base()
37
- self.LIB_PATH = self.get_lib_dir(base)
+ self.BASE = self.get_base()
38
39
if not self.LINUXCNC_IS_RUNNING:
40
# Reset the log level for this module
@@ -873,9 +872,6 @@ def get_base(self):
873
872
LOG.verbose('Using Linuxcnc Base directory: {}'.format(base))
874
return base
875
876
- def get_lib_dir(self, base):
877
- return os.path.join(base, "share", "qtvcp")
878
-
879
######################################################
880
def __getitem__(self, item):
881
return getattr(self, item)
0 commit comments