1
0
mirror of https://github.com/xtacocorex/CHIP_IO synced 2025-07-20 04:43:21 +00:00

quick fix because i broke xio input setup with the pud code, this closes #58

This commit is contained in:
Robert Wolterman
2017-01-29 20:21:02 +00:00
parent 541d76f641
commit 2e2177da26
4 changed files with 8 additions and 8 deletions

View File

@ -88,6 +88,6 @@ void define_constants(PyObject *module)
module_debug = Py_BuildValue("i", DEBUG ? Py_True: Py_False);
PyModule_AddObject(module, "DEBUG", module_debug);
version = Py_BuildValue("s", "0.3.4");
version = Py_BuildValue("s", "0.3.4.1");
PyModule_AddObject(module, "VERSION", version);
}