We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a03f05 commit 8414b5eCopy full SHA for 8414b5e
1 file changed
lib/python/common/iniinfo.py
@@ -32,8 +32,8 @@ def __init__(self, ini=None):
32
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()
- self.IMAGE_PATH = self.get_image_dir(base)
37
self.LIB_PATH = self.get_lib_dir(base)
38
39
if not self.LINUXCNC_IS_RUNNING:
@@ -873,12 +873,6 @@ def get_base(self):
873
LOG.verbose('Using Linuxcnc Base directory: {}'.format(base))
874
return base
875
876
- def get_image_dir(self, base):
877
- if base is not None:
878
- return os.path.join(base, "share", "qtvcp", "images")
879
- else:
880
- return None
881
-
882
def get_lib_dir(self, base):
883
return os.path.join(base, "share", "qtvcp")
884
0 commit comments