hook: Fix harmless typo
authorAndreas Beckmann <anbe@debian.org>
Fri, 7 Sep 2018 17:52:38 +0000 (19:52 +0200)
committerGuido Günther <agx@sigxcpu.org>
Fri, 21 Sep 2018 11:33:36 +0000 (13:33 +0200)
Gbp-Dch: Ignore

gbp/scripts/common/hook.py

index bcaf3cd9ed4c111909d820e84c27d08365a94c58..fb877f00cba765808422ed6c4b3e227d1e491502 100644 (file)
@@ -33,7 +33,7 @@ class Hook(RunAtCommand):
 
     @staticmethod
     def md(a, b):
-        "Merge two dictionaires a and b into a new one"
+        "Merge two dictionaries a and b into a new one"
         c = a.copy()
         c.update(b)
         return c