aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndreas Beckmann <anbe@debian.org>2018-09-07 19:52:38 +0200
committerGuido Günther <agx@sigxcpu.org>2018-09-21 13:33:36 +0200
commit702a5420916dac0e88aeb31b756402363c1f2ef8 (patch)
tree28c96789e2f615a9cfbbf737ec3b2a8d76f7f5e4
parent12574cce0cc12ca0f17a91cacea358bdc2f1a737 (diff)
hook: Fix harmless typo
Gbp-Dch: Ignore
-rw-r--r--gbp/scripts/common/hook.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/scripts/common/hook.py b/gbp/scripts/common/hook.py
index bcaf3cd9..fb877f00 100644
--- a/gbp/scripts/common/hook.py
+++ b/gbp/scripts/common/hook.py
@@ -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