From 98c480c7c7707d9af22bd973afc869b3ab3ddca8 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Sat, 8 Mar 2014 21:47:09 +0000 Subject: [PATCH] [Python] Fix docstring of Sim1D.restore Resolves Issue 210. --- 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 9b2b5a652..764f33c1a 100644 --- a/interfaces/cython/cantera/onedim.pyx +++ b/interfaces/cython/cantera/onedim.pyx @@ -778,7 +778,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