From 5795f3fd55a1fef16386531164a135ac3554815d Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Mon, 24 Mar 2014 21:36:55 +0000 Subject: [PATCH] [Python] Fix docstring of Sim1D.restore Resolves Issue 210. Cherry-pick of trunk commit r2790. --- interfaces/cython/cantera/onedim.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interfaces/cython/cantera/onedim.pyx b/interfaces/cython/cantera/onedim.pyx index 8f6fa483f..4f5594dc6 100644 --- a/interfaces/cython/cantera/onedim.pyx +++ b/interfaces/cython/cantera/onedim.pyx @@ -771,7 +771,7 @@ cdef class Sim1D: Amount of logging information to display while restoring, from 0 (disabled) to 2 (most verbose). - >>> s.restore(filename='save.xml', id='energy_off') + >>> s.restore(filename='save.xml', name='energy_off') """ self.sim.restore(stringify(filename), stringify(name), loglevel) self._initialized = True