From e190cc027ac450e6809efa30a6f587002149f01e Mon Sep 17 00:00:00 2001 From: gac-x04sa Date: Tue, 30 Oct 2018 16:19:40 +0100 Subject: [PATCH] Script execution --- script/cpython/wrapper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/cpython/wrapper.py b/script/cpython/wrapper.py index 65cbc7d..6d5f13c 100644 --- a/script/cpython/wrapper.py +++ b/script/cpython/wrapper.py @@ -1,11 +1,11 @@ from jeputils import * def img_get_int(fname, header, width, height, depth, x1,y1,x2,y2, bx1,by1,bx2,by2 ): - ret = call_jep("CPython/image_functions", "img_get_int", [fname, header, width, height, depth, x1,y1,x2,y2, bx1,by1,bx2,by2]) + ret = call_jep("cpython/image_functions", "img_get_int", [fname, header, width, height, depth, x1,y1,x2,y2, bx1,by1,bx2,by2]) return ret #def hfitoff(data, xdeg): -# ret = call_jep("CPython/hfitoff", "hfitoff", [to_npa(data),to_npa(xdeg)]) +# ret = call_jep("cpython/hfitoff", "hfitoff", [to_npa(data),to_npa(xdeg)]) # return (ret[0], ret[1], ret[2],ret[3], ret[4].data, ret[5].data)