diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/py_amount.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/py_amount.cc b/src/py_amount.cc index 88e2c993..6f85f44d 100644 --- a/src/py_amount.cc +++ b/src/py_amount.cc @@ -139,7 +139,7 @@ void export_amount() .def(init<long>()) .def(init<std::string>()) - .def("exact", &amount_t::exact, args("value"), + .def("exact", &amount_t::exact, arg("value"), "Construct an amount object whose display precision is always equal to its\n\ internal precision.") .staticmethod("exact") |