]> Frank Brehm's Git Trees - pixelpark/pp-admin-tools.git/commitdiff
Fixed typo.
authorFrank Brehm <frank.brehm@pixelpark.com>
Wed, 14 Jun 2023 13:04:42 +0000 (15:04 +0200)
committerFrank Brehm <frank.brehm@pixelpark.com>
Wed, 14 Jun 2023 13:04:42 +0000 (15:04 +0200)
lib/pp_admintools/app/mirror_ldap.py
lib/pp_admintools/argparse_actions.py

index 19079d523d763aa92313f5fef9bbdffa37f606b4..dbd400842ecc33c9631ab358c5c6466747d22891 100644 (file)
@@ -30,7 +30,7 @@ from .ldap import BaseLdapApplication
 from .ldap import LdapAppError
 from .. import pp
 from ..argparse_actions import LimitedFloatOptionAction
-from ..argparse_actions import NonNegativeItegerOptionAction
+from ..argparse_actions import NonNegativeIntegerOptionAction
 from ..config.mirror_ldap import MirrorLdapConfiguration
 from ..xlate import XLATOR
 
@@ -125,7 +125,7 @@ class MirrorLdapApplication(BaseLdapApplication):
 
         app_group.add_argument(
             '-L', '--limit', dest='limit', type=int, metavar=_('NUMBER'),
-            action=NonNegativeItegerOptionAction,
+            action=NonNegativeIntegerOptionAction,
             help=_(
                 'Limiting the mirroring to the first NUMBER entries. '
                 'This option is valid only in simulation mode.'),
index 05a8709485308b9f510436be641da0f8310d6fd3..3e8d739aa8a6e84ed876dfbb4d2368a4ba71bc43 100644 (file)
@@ -60,7 +60,7 @@ class PortOptionAction(argparse.Action):
         setattr(namespace, self.dest, port)
 
 # =============================================================================
-class NonNegativeItegerOptionAction(argparse.Action):
+class NonNegativeIntegerOptionAction(argparse.Action):
     """
     It's an argparse action class to ensure a positive integer value.