aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2016-09-10 17:38:57 +0200
committerGuido Günther <agx@sigxcpu.org>2016-09-12 08:52:15 +0200
commit54fbfa24c1831d05fb3e33bd607906694ab6f8a2 (patch)
tree43e9a14bcda52ee77394d099c3e29d2a8273444b
parent3d44315d8ded05163170a1efefcc27407bedf724 (diff)
format: flake8 clean
-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))
-
-