changeset 428:5aec70b85d92

assume you built dmx_usb_module with "python setup.py build_ext -i" so we don't have to construct the plat-specific path for dmx.so
author drewp@bigasterisk.com
date Tue, 10 Jun 2008 05:01:54 +0000
parents e14a646853b1
children 41aa6895b3e6
files light9/io/__init__.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/light9/io/__init__.py	Tue Jun 10 05:01:35 2008 +0000
+++ b/light9/io/__init__.py	Tue Jun 10 05:01:54 2008 +0000
@@ -63,7 +63,7 @@
 
     def _dmx(self):
         if self.out is None:
-            sys.path.append("dmx_usb_module/build/lib.linux-i686-2.4")
+            sys.path.append("dmx_usb_module")
             from dmx import Dmx
             self.out = Dmx()
         return self.out