aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/format.py
diff options
context:
space:
mode:
Diffstat (limited to 'gbp/format.py')
-rw-r--r--gbp/format.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/gbp/format.py b/gbp/format.py
index f35f7c6e..d1985195 100644
--- a/gbp/format.py
+++ b/gbp/format.py
@@ -18,6 +18,7 @@
from gbp.errors import GbpError
+
def format_str(msg, args):
"""
Format a string with the given dict. Be a bit more verbose than
@@ -41,5 +42,3 @@ def format_str(msg, args):
except KeyError as e:
raise GbpError("Failed to format %s: Missing value %s in %s" %
(msg, e, args))
-
-