]> sigrok.org Git - libsigrokdecode.git/commitdiff
Fix incorrect path to the Python decoder scripts.
authorUwe Hermann <redacted>
Tue, 6 Apr 2010 00:06:55 +0000 (02:06 +0200)
committerUwe Hermann <redacted>
Tue, 6 Apr 2010 00:06:55 +0000 (02:06 +0200)
decode.c

index bc4b531040188b4df69e1cf4c2789df6739ce286..7bbcff336bf8badf353a392d258a8fc7e1a8bb23 100644 (file)
--- a/decode.c
+++ b/decode.c
@@ -32,7 +32,7 @@ int sigrokdecode_init(void)
        Py_Initialize();
 
        /* FIXME */
-       PySys_SetPath("decode/scripts");
+       PySys_SetPath("libsigrokdecode/scripts");
 
        return 0;
 }