From: JINMEI Tatuya Date: Fri, 5 Oct 2012 04:08:55 +0000 (-0700) Subject: [2244] a minor editorial fix to the previous comment update X-Git-Tag: trac2351_base~1^2~7^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa1d1161f76487ceea122baf4dac79c407a07ba8;p=thirdparty%2Fkea.git [2244] a minor editorial fix to the previous comment update --- diff --git a/src/lib/python/isc/bind10/component.py b/src/lib/python/isc/bind10/component.py index aad3e694df..fbb9e0e1bb 100644 --- a/src/lib/python/isc/bind10/component.py +++ b/src/lib/python/isc/bind10/component.py @@ -573,7 +573,7 @@ class Configurator: def has_component(self, component): '''Return if a specified component is configured.''' - # Values of self._components are tuples of (name, component). + # Values of self._components are tuples of (config, component). # Extract the components of the tuples and see if the given one # is included. return component in map(lambda x: x[1], self._components.values())