diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2016-10-13 14:12:27 -0600 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2016-10-13 14:12:27 -0600 |
commit | ffe133a194e36ecbe060f08d132339b437975ea6 (patch) | |
tree | 9c7f4d854803a3bf85da2878730aa022ecb9ab0e | |
parent | 43a22099d0f62f90306f47fa29471ca62b53eebd (diff) | |
download | chill-ffe133a194e36ecbe060f08d132339b437975ea6.tar.gz chill-ffe133a194e36ecbe060f08d132339b437975ea6.tar.bz2 chill-ffe133a194e36ecbe060f08d132339b437975ea6.zip |
effort fix
-rw-r--r-- | src/chillmodule.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chillmodule.cc b/src/chillmodule.cc index 552eda8..2780e5c 100644 --- a/src/chillmodule.cc +++ b/src/chillmodule.cc @@ -282,7 +282,7 @@ chill_dest(PyObject *self, PyObject* args) { static PyObject *chill_effort(PyObject *self, PyObject *args) { strict_arg_num(args, 1, "effort"); - source_filename = intArg(args, 0); + effort = intArg(args,0); Py_RETURN_NONE; } |