From: Uwe Hermann Date: Tue, 6 Apr 2010 00:06:55 +0000 (+0200) Subject: Fix incorrect path to the Python decoder scripts. X-Git-Tag: libsigrokdecode-0.1.0~347 X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=3aca097f7fa3bd75693954806d64281239cad2fd;hp=a4898be72e8018462f02e117376625454974cd99 Fix incorrect path to the Python decoder scripts. --- diff --git a/decode.c b/decode.c index bc4b531..7bbcff3 100644 --- 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; }