Parcourir la source

[2244] a minor editorial fix to the previous comment update

JINMEI Tatuya il y a 12 ans
Parent
commit
6207e0ccf7
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/lib/python/isc/bind10/component.py

+ 1 - 1
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())