Hi,

When trying to run pncconf from the recent buildbot debian package it
complains about missing python modules.
Those modules are missing. They should be under /var/lib/python/pncconf.
I guess the changes to pncconf are not yet reflected in the debian
control files. I am no debian-package-expert, so I cant propose a patch
for that.

However, I also found a few critical typos in the pncconf python module.
A patch for those is attached.

Kind Regards
Carsten


-- 
Carsten Presser
Geschäftsführer

c...@rstenpresser.de
Elektronikentwicklung und Vertrieb
Frankfurter Strasse 1
66606 St.Wendel

Telefon: 06851-1305585
Mobil: 0179-5594690

Internet: http://ca.rstenpresser.de
EMail: c...@rstenpresser.de
--- private_data.py     2014-10-29 15:41:16.361855079 +0100
+++ /home/awok/linuxcnc-dev/lib/python/pncconf/private_data.py  2014-10-29 
01:41:14.270715001 +0100
@@ -60,13 +60,13 @@
         if not os.path.isfile(self.WIZARD):
             self.WIZARD = os.path.join("/etc/linuxcnc/linuxcnc-wizard.gif")
         if not os.path.isfile(self.WIZARD):
-            self.WIZARD = 
os.path.join("/usr/share/linuxcnc/linuxcnc-wizard.gif")
+            self.LINUXCNCICON = 
os.path.join("/usr/share/linuxcnc/linuxcnc-wizard.gif")
         if not os.path.isfile(self.WIZARD):
             wizdir = os.path.join(os.path.abspath(BIN), "..")
             self.WIZARD = os.path.join(wizdir, "linuxcnc-wizard.gif")
 
         self.ICONDIR = os.path.join(os.path.abspath(BIN), "..")
-        self.LINUXCNCICON = os.path.join(self.ICONDIR, "linuxcncicon.png")
+        self.LINUXCNC = os.path.join(self.ICONDIR, "linuxcncicon.png")
         if not os.path.isfile(self.LINUXCNCICON):
             self.LINUXCNCICON = 
os.path.join("/etc/linuxcnc/linuxcnc-wizard.gif")
         if not os.path.isfile(self.LINUXCNCICON):
------------------------------------------------------------------------------
_______________________________________________
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users

Reply via email to